├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── contributors.md └── musicbot ├── __main__.py ├── bot.py ├── cogs ├── error.py ├── meta.py ├── music.py └── tips.py ├── config.py ├── util.py └── video.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/README.md -------------------------------------------------------------------------------- /contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/contributors.md -------------------------------------------------------------------------------- /musicbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/musicbot/__main__.py -------------------------------------------------------------------------------- /musicbot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/musicbot/bot.py -------------------------------------------------------------------------------- /musicbot/cogs/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/musicbot/cogs/error.py -------------------------------------------------------------------------------- /musicbot/cogs/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/musicbot/cogs/meta.py -------------------------------------------------------------------------------- /musicbot/cogs/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/musicbot/cogs/music.py -------------------------------------------------------------------------------- /musicbot/cogs/tips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/musicbot/cogs/tips.py -------------------------------------------------------------------------------- /musicbot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/musicbot/config.py -------------------------------------------------------------------------------- /musicbot/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/musicbot/util.py -------------------------------------------------------------------------------- /musicbot/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joek13/py-music-bot/HEAD/musicbot/video.py --------------------------------------------------------------------------------