Skip to content

Deethon¤

Codacy Badge Codacy Badge PyPI PyPI - Status PyPI - Downloads GitHub license

Deethon is a lightweight Python library for downloading high quality music from Deezer.

Getting started¤

Installation¤

pip install deethon

Usage¤

from deethon import Session, Quality

deezer = Session("YOUR ARL TOKEN")

deezer.download(
    "https://www.deezer.com/track/1234567",
    Quality.MP3_320  # defaults to FLAC
)