A friendly wrapper library for the Deezer API
Project description
Deezer Python Client
A friendly wrapper around the Deezer API.
Installation
The package is published on PyPI and can be installed by running:
pip install deezer-python
Basic Use
So far you can only retrieve the data for the public objects, for which no login is required. The objects are translated to python resources, which are basically python objects encapsulating the json dictionary returned by the API.
>>> client = deezer.Client()
>>> client.get_album(12).title
u'Monkey Business'
See the whole API reference on the Sphinx generated documentation.
Asynchronous client
You also can use an AsyncClient with tornado, which requires an optional dependency. You should install with pip install deezer-python[tornado]. Then, making requests look like:
>>> from tornado.gen import coroutine
>>> from tornado.ioloop import IOLoop
>>> from deezer.contrib.tornado import AsyncClient
>>>
>>>
>>> @coroutine
... def main():
... client = AsyncClient()
... album = yield client.get_album(12)
... print(album.title)
...
>>> IOLoop.instance().run_sync(main)
Monkey Business
Authentication
Not supported by this package. There are excellent other python modules to handle that. There is the excellent Python Social Auth, which supports Deezer authentication.
History
0.8.0 (2018-10-30)
Added index and limit to Client.search & Client.get_charts. Defaults are set to Deezer API defaults.
Changed tornado to be an optional requirement. If you want to use the asynchronous client, you need to install the library as follow pip install deezer-python[tornado].
Simplified a couple of things to rely more on six for Python compatibility.
Auto-format code using black.
0.7.0 (2018-10-03)
Breaking: the async module has been renamed asynchronous as it was breaking under Python 3.7, thanks Matheus Horstmann for the patch
Optimisation: the session is now stored internally by the client
0.6.1 (2017-06-19)
Added access token to the request kwargs. Thanks Nikolay Sheregeda for the patch.
Documentation update, thanks Khamaileon for the correction.
0.6.0 (2016-12-27)
0.5.0 (2016-12-26)
Python 3.6 support
Remove Python 3.2 classifier, support was dropped since 0.2.3
Updated docs and testing setup
0.4.0 (2016-12-08)
0.3.0 (2016-11-09)
Enriching the API for resources to get related resources as iterators. Thanks to Pascal.
0.2.3 (2016-11-07)
Drop support for Python 3.2. It should still work, but we are not testing it anymore, as this version as reached end of life.
0.2.2 (2015-09-14)
Python 3.5 support
Various doc updates
0.2.0 (2015-01-31)
Enriching the API for resources to get artists for a genre, top tracks of an artist, etc… Thanks to Misuzu.
0.1.0 (2014-11-22)
Initial release.
Credits
“deezer-python” is written and maintained by Bruno Alla.
Contributors
Other people contributed to this project:
Please add yourself here alphabetically when you submit your first pull request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file deezer-python-0.8.0.tar.gz
.
File metadata
- Download URL: deezer-python-0.8.0.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d8c0445ff9547fe0e1840362d8f5a8f0c2d2e5d37594a38a4f55867263bf299 |
|
MD5 | 4ffecb7157ed2f908e2dfce4af8e0ce3 |
|
BLAKE2b-256 | bdb4ef02f1dbdc726a3adec9b63a7f1448e6bb7ee46deefd6f985383dfb099cc |
File details
Details for the file deezer_python-0.8.0-py3-none-any.whl
.
File metadata
- Download URL: deezer_python-0.8.0-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f9576c69256242997b0e13897ba65afb39245f728b7d208e16b7ec864b31530 |
|
MD5 | e7d9b43f9419904f5df9c864c06d8ddd |
|
BLAKE2b-256 | a0f8d793c4dde2801eda46588dc762ada80eff0b52914a984c37e8c1e2df9739 |