Skip to content

Latest commit

 

History

History
50 lines (45 loc) · 2.03 KB

README.md

File metadata and controls

50 lines (45 loc) · 2.03 KB

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