Skip to content

Latest commit

 

History

History
52 lines (47 loc) · 2.06 KB

README.md

File metadata and controls

52 lines (47 loc) · 2.06 KB

nz-ua

GitHub release licence pypi docs

More info
Telegram Channel YouTube channel Discord Server

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