projectZ

Library for creating projectZ bots and scripts.


Keywords
projectZ, py, projectZ-py, projectZ-bot, api, python, python3, x, xsarz, official, async, sync, projz, project, projectzbot, projectzpy
License
MIT
Install
pip install projectZ==1.1.7.2.1.4

Documentation

GitHub release licence pypi docs

Sponsor project
Installation

Git

pip install git+https://github.com/xXxCLOTIxXx/projectZ.py.git

pypi

pip install projectZ


Using

Login example

import projectZ

client = projectZ.Client()
client.login(email='email', password='password')



Async login example

import projectZ
import asyncio


client = projectZ.AsyncClient()
async def main():
	await client.login(email='email', password='password')

if __name__ == '__main__':
	loop = asyncio.get_event_loop()
	loop.run_until_complete(main())