nz-ua.python

Library for working with the nz-ua application.


Keywords
nz, nz_uanz, py, nz-ua, ua, asyncapi, python, python3, x, xsarz, official, bot, na-ua-bot, nzua
License
MIT
Install
pip install nz-ua.python==1.1.6

Documentation

Library Information
Library Documentation Library in pypi
More info
Telegram Channel YouTube channel Discord Server

nz-ua.py

Library for working with nz ua servers, below you will see code examples, for more examples see the documentation or the examples folder

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