xXxCLOTIxXx / projectZ.py

Library for working with the projectZ social network (https://www.projz.com/)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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')
import projectZ

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


@client.event("on_text_message")
def message(data):
    print(data.json)



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


About

Library for working with the projectZ social network (https://www.projz.com/)

License:MIT License


Languages

Language:Python 100.0%