Metadata-Version: 2.1
Name: deethon
Version: 0.4.3
Summary: Python3 library to easily download music from Deezer
Home-page: https://github.com/deethon/deethon
License: GPL-3.0-or-later
Author: Aykut Yilmaz
Author-email: aykuxt@gmail.com
Maintainer: Aykut Yilmaz
Maintainer-email: aykuxt@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: importlib_metadata (>=1.6,<2.0); python_version < "3.8"
Requires-Dist: mutagen (>=1.44.0,<2.0.0)
Requires-Dist: pycryptodome (>=3.9.7,<4.0.0)
Requires-Dist: requests (>=2.23.0,<3.0.0)
Project-URL: Documentation, https://deethon.github.io/deethon
Project-URL: Repository, https://github.com/deethon/deethon
Description-Content-Type: text/markdown

# Deethon

[![Codacy Badge](https://app.codacy.com/project/badge/Grade/3a54b30586b941acb82079d0252e0320)](https://www.codacy.com/gh/deethon/deethon?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=deethon/deethon&amp;utm_campaign=Badge_Grade)
[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/3a54b30586b941acb82079d0252e0320)](https://www.codacy.com/gh/deethon/deethon?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=deethon/deethon&amp;utm_campaign=Badge_Coverage)
[![PyPI](https://img.shields.io/pypi/v/deethon)](https://pypi.org/project/deethon/)
![PyPI - Status](https://img.shields.io/pypi/status/deethon)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/deethon)](https://pypi.org/project/deethon/)
[![GitHub license](https://img.shields.io/github/license/deethon/deethon)](https://github.com/deethon/deethon/blob/master/LICENSE)

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

## Gettings started

### Installation

```sh
pip install deethon
```

### Usage

```python
import deethon

deezer = deethon.Session("YOUR ARL TOKEN")

deezer.download(
    "https://www.deezer.com/track/1234567",
    bitrate="FLAC"  # or MP3_320 / MP3_256 / MP3_128 (optional)
)
```

