Metadata-Version: 2.1
Name: PySoundCloud
Version: 2020.6.2
Summary: A Python wrapper for the SoundCloud API
Home-page: https://github.com/AnthonyWritesBadCode/PySoundCloud/
Author: Anthony Provenza
License: MIT License
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: setuptools (~=47.1.1)
Requires-Dist: requests (~=2.23.0)
Requires-Dist: urllib3 (~=1.25.9)
Requires-Dist: mutagen (~=1.44.0)

# PySoundCloud
PySoundCloud is a Python wrapper for the SoundCloud API.

## Basic Usage
To use PySoundCloud just import the client. This handles all of the interactions with the API
```python
from pysoundcloud import Client
# Replace this with your client ID
client = Client("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx")
```

From there you can use all of the functions of the client. The following example searches for the track
`her eyes ekae remix` and then prints the artist of the track and the title
```python
results = client.search("her eyes ekae remix")
track_title = results[0].title
track_artist = results[0].user.username
print(f"{track_artist} - {track_title}")
```


