This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import discord | |
| from discord.ext import commands | |
| import asyncio | |
| import itertools | |
| import sys | |
| import traceback | |
| from async_timeout import timeout | |
| from functools import partial | |
| from youtube_dl import YoutubeDL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Please understand Music bots are complex, and that even this basic example can be daunting to a beginner. | |
| For this reason it's highly advised you familiarize yourself with discord.py, python and asyncio, BEFORE | |
| you attempt to write a music bot. | |
| This example makes use of: Python 3.6 | |
| For a more basic voice example please read: | |
| https://github.com/Rapptz/discord.py/blob/rewrite/examples/basic_voice.py |