Skip to content

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

License

Notifications You must be signed in to change notification settings

xXxCLOTIxXx/nz-ua.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub release licence pypi docs

More info
Telegram Channel YouTube channel Discord Server

nz-ua.py

Library for working with nz ua servers

Login example

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()))