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
- Host: GitHub
- URL: https://github.com/xxxclotixxx/nz-ua.py
- Owner: xXxCLOTIxXx
- License: mit
- Created: 2023-02-17T13:56:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-01T12:41:26.000Z (4 months ago)
- Last Synced: 2025-03-02T18:09:40.660Z (3 months ago)
- Topics: aiohttp, async, bot, hometask, na-ua-bot, nz, nz-ua, nzua, python, python3
- Language: Python
- Homepage:
- Size: 1.44 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
![]()
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()))
```