Metadata-Version: 2.1
Name: soundcloud-v2
Version: 1.0.6
Summary: Python wrapper for the v2 SoundCloud API
Home-page: https://github.com/7x11x13/soundcloud.py
Author: 7x11x13
Author-email: x7x11x13@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/7x11x13/soundcloud.py/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: test

# soundcloud.py

[![Tests](https://github.com/7x11x13/soundcloud.py/actions/workflows/ci.yml/badge.svg)](https://github.com/7x11x13/soundcloud.py/actions/workflows/ci.yml)[![Coverage Status](https://coveralls.io/repos/github/7x11x13/soundcloud.py/badge.svg?branch=main)](https://coveralls.io/github/7x11x13/soundcloud.py?branch=main)

Python wrapper for some of the v2 SoundCloud API

## Installation

```bash
pip install soundcloud-v2
```

## Example

```python
from soundcloud import SoundCloud

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

## License
[MIT](https://choosealicense.com/licenses/mit/)

