Skip to content

Instantly share code, notes, and snippets.

View christiankaye's full-sized avatar

Christian Kaye christiankaye

View GitHub Profile
from soundcloud import Client
from requests import get
from os.path import join as path_join
from mutagen.mp3 import MP3
from mutagen import File
from mutagen.id3 import ID3, ID3NoHeaderError, TIT2, TPE1, TPE2, TALB, TRCK, APIC
class Downloader:
def __init__(self, client_id):
self.client = Client(client_id=client_id)