An open API service indexing awesome lists of open source software.

https://github.com/xxxclotixxx/nz-ua.py

Library for interacting with the site nz.ua (school homework) in python
https://github.com/xxxclotixxx/nz-ua.py

aiohttp async bot hometask na-ua-bot nz nz-ua nzua python python3

Last synced: 2 months ago
JSON representation

Library for interacting with the site nz.ua (school homework) in python

Awesome Lists containing this project

README

        


nz-ua



GitHub release
licence
pypi
docs




Sponsor project




More info



Telegram Channel




YouTube channel




Discord Server




Library for working with nz ua servers


Login example

```python
import nz
import asyncio
client = nz.Client()

async def main():
info = await client.login('user_name', 'password')
print(info.json)

if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.run_until_complete(loop.create_task(main()))
```