Metadata-Version: 2.3
Name: raphson_music_client
Version: 1.1.1
Summary: Raphson music player API client
Project-URL: Homepage, https://codeberg.org/raphson/music-client-python
Project-URL: Issues, https://codeberg.org/raphson/music-client-python/issues
Author-email: Robin Slot <robin@rslot.nl>
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Typing :: Typed
Requires-Python: >=3.12
Requires-Dist: aiohttp
Description-Content-Type: text/markdown

# music-client-python

Python client library for interacting with the Raphson music server. For use in other applications.

## Installation

This library is available [on PyPi](https://pypi.org/project/raphson-music-client/).

Install it using pip:
```
pip install raphson-music-client
```

## Usage

```py
import asyncio
from raphson_music_client import RaphsonMusicClient

async def main():
    client = RaphsonMusicClient()
    await client.setup(base_url=..., user_agent=..., token=...)

if __name__ == '__main__'
    asyncio.run(main())
```
