Skip to content

Instantly share code, notes, and snippets.

View Sevit023's full-sized avatar
🖐️
High Five!

Senna Sevit023

🖐️
High Five!
  • Hogeschool van Amsterdam
  • Haarlem
View GitHub Profile
@Sevit023
Sevit023 / music.py
Last active November 18, 2019 18:34 — forked from Zenrac/music.py
Basic music with playlist support on Rewrite
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
@Zenrac
Zenrac / music.py
Last active September 9, 2021 13:40 — forked from EvieePy/music.py
Basic music with playlist support on Rewrite
"""
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