soundcloud.py icon indicating copy to clipboard operation
soundcloud.py copied to clipboard

Python wrapper for v2 SoundCloud API

soundcloud.py

TestsCoverage Status

Python wrapper for some of the v2 SoundCloud API

Installation

pip install soundcloud-v2

Example

from soundcloud import SoundCloud

sc = SoundCloud("client_id", "auth_token")
assert sc.is_client_id_valid()
assert sc.is_auth_token_valid()
me = sc.get_user_by_username("7x11x13")
assert me.permalink == "7x11x13"

License

MIT