An open API service indexing awesome lists of open source software.

https://github.com/xxxclotixxx/projectz.py

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

api project projectz projectz-bot projectz-py projectzbot projectzpy python

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

        



GitHub release
licence
pypi
docs




Sponsor project



Installation

Git



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

pypi

```bash
pip install projectZ
```





Using

Login example

```python
import projectZ

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

```python
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

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






=Read the documentation