Metadata-Version: 2.4
Name: luduvo
Version: 0.2.0
Summary: Python wrapper for Luduvo API
Author-email: TheSkout001 <me@theskout001.ru>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.24
Dynamic: license-file


# luduvo-api-wrapper

A Python wrapper for the Luduvo API.

## Installation

```bash
pip install luduvo
```

## Usage

```python
import asyncio
from luduvo import Client

client = Client()
async def main():
    user await client.get_user(1)
    print(user.username) # > Luduvo

asyncio.run(main)
```

## License

MIT
