├── Base 篇 ├── 前綴指令.py └── 關鍵字.py ├── Button 篇 └── button.py ├── Cog 篇 ├── bot.py └── cogs │ └── main.py ├── Embed 篇 └── embed.py ├── Event 篇 └── event.py ├── LICENSE ├── Modal 篇 └── modal.py ├── README.md ├── Slash 篇 └── slash.py ├── Tasks 篇 └── task.py ├── View 篇 └── view.py └── 完整程式範例 ├── bot.py └── cogs ├── button.py ├── embed.py ├── event.py ├── main.py ├── modal.py ├── slash.py ├── task.py └── view.py /Base 篇/前綴指令.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/Base 篇/前綴指令.py -------------------------------------------------------------------------------- /Base 篇/關鍵字.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/Base 篇/關鍵字.py -------------------------------------------------------------------------------- /Button 篇/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/Button 篇/button.py -------------------------------------------------------------------------------- /Cog 篇/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/Cog 篇/bot.py -------------------------------------------------------------------------------- /Cog 篇/cogs/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/Cog 篇/cogs/main.py -------------------------------------------------------------------------------- /Embed 篇/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/Embed 篇/embed.py -------------------------------------------------------------------------------- /Event 篇/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/Event 篇/event.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/LICENSE -------------------------------------------------------------------------------- /Modal 篇/modal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/Modal 篇/modal.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/README.md -------------------------------------------------------------------------------- /Slash 篇/slash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/Slash 篇/slash.py -------------------------------------------------------------------------------- /Tasks 篇/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/Tasks 篇/task.py -------------------------------------------------------------------------------- /View 篇/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/View 篇/view.py -------------------------------------------------------------------------------- /完整程式範例/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/完整程式範例/bot.py -------------------------------------------------------------------------------- /完整程式範例/cogs/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/完整程式範例/cogs/button.py -------------------------------------------------------------------------------- /完整程式範例/cogs/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/完整程式範例/cogs/embed.py -------------------------------------------------------------------------------- /完整程式範例/cogs/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/完整程式範例/cogs/event.py -------------------------------------------------------------------------------- /完整程式範例/cogs/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/完整程式範例/cogs/main.py -------------------------------------------------------------------------------- /完整程式範例/cogs/modal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/完整程式範例/cogs/modal.py -------------------------------------------------------------------------------- /完整程式範例/cogs/slash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/完整程式範例/cogs/slash.py -------------------------------------------------------------------------------- /完整程式範例/cogs/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/完整程式範例/cogs/task.py -------------------------------------------------------------------------------- /完整程式範例/cogs/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallshawn95/Python-Discord-Bot-Course/HEAD/完整程式範例/cogs/view.py --------------------------------------------------------------------------------