Metadata-Version: 2.1
Name: aiocvv
Version: 0.0.1
Summary: An asynchronous client for Classeviva written in Python.
Home-page: https://github.com/Vinchethescript/aiocvv
Author: Vinche.zsh
Author-email: vinchethescript@gmail.com
License: GPL-3.0
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp
Requires-Dist: appdirs
Requires-Dist: bcrypt

# aiocvv
An asynchronous client for Classeviva written in Python.

Teachers' endpoints haven't been implemented yet. If you are a teacher and/or you want to contribute, feel free to [open a pull request](https://github.com/Vinchethescript/pulls).

## Installation
```bash
pip install -U aiocvv
```

## Example usage
```python
import asyncio
from aiocvv import ClassevivaClient

async def main():
    client = ClassevivaClient("username", "password")
    await client.login() # IMPORTANT! Without this, client.me will be None
    print(client.me.name)

if __name__ == "__main__":
    asyncio.run(main())
```

You can also `await` the client class, so it will automatically login for you.
```python
import asyncio
from aiocvv import ClassevivaClient

async def main():
    client = await ClassevivaClient("username", "password")
    print(client.me.name)

if __name__ == "__main__":
    asyncio.run(main())
```

A more complex example showing most of what this library can do can be found [here](https://github.com/Vinchethescript/aiocvv/blob/main/example.py).
