An API wrapper for Monstercat Connect written in Python.
Project description
connect.py is an API wrapper for Monstercat Connect written in Python.
If you want to report errors, bugs or typos you can join the discord guild listed next to the build shield.
Installing
To install the library, you can just run the following command:
python3 -m pip install -U connect.py
To install the development version, do the following:
python3 -m pip install -U https://github.com/GiovanniMCMXCIX/connect.py/archive/master.zip#egg=connect.py[performance]
Requirements
Python 3.6+
requests library
Extra Requirements
This library contains an extra requirement that is name performance in other the library to work faster.
You can install it using the following command:
python3 -m pip install -U connect.py[performance]
Example
import connect
client = connect.Client()
def get_release():
releases = client.search_release('friends')
print('Found the following:')
for release in releases:
print('{0.title} by {0.artists} [{0.catalog_id}] was released on {0.release_date} '
'and has {1} track(s)'.format(release, len(release.tracks)))
if __name__ == "__main__":
get_release()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
connect.py-0.4.1.tar.gz
(13.6 kB
view hashes)
Built Distribution
connect.py-0.4.1-py3-none-any.whl
(26.0 kB
view hashes)
Close
Hashes for connect.py-0.4.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa75c162ac40a5c69ca95261311bb923b018067bec47c87af07036789c1d7158 |
|
MD5 | 93407e20236c02521691c0fdb093ca6d |
|
BLAKE2b-256 | 28472e309a11ad06708e011b865e337ffe5bfa683a275042b0ab811db5b4b957 |