projectZ.py


NameprojectZ.py JSON
Version 1.1.6.8 PyPI version JSON
download
home_pagehttps://github.com/xXxCLOTIxXx/projectZ.py
SummaryLibrary for creating projectZ bots and scripts.
upload_time2023-04-15 19:44:54
maintainer
docs_urlNone
authorXsarz
requires_python
licenseMIT
keywords projectz.py projectz projectz-py projectz-bot api python python3 python3.x xsarz official async sync
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <table align="center">
	<tr> <th colspan="3">Library Information</th> </tr>
	<tr>
		<td>
			<a href='https://projectzpy.readthedocs.io/en/latest/'><img src="https://pbs.twimg.com/profile_images/525686734760067072/OhsWgbsr_400x400.png" height="30px">
			 Library Documentation</a>
		</td>
		<td>
			<a href='https://github.com/xXxCLOTIxXx/projectZ.py'><img src="https://upload.wikimedia.org/wikipedia/commons/9/91/Octicons-mark-github.svg" height="30px">
			 GitHub</a>
		</td>
</table>
<table align="center">
	</tr>
	<tr> <th colspan="3">More info</th> </tr>
	<tr>
		<td>
			<a href="https://t.me/DxsarzUnion"><img src="https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg" height="30px">
			 Telegram Channel</a>
		</td>
		<td>
			<a href="https://www.youtube.com/channel/UCNKEgQmAvt6dD7jeMLpte9Q"><img src="https://upload.wikimedia.org/wikipedia/commons/0/09/YouTube_full-color_icon_%282017%29.svg" height="30px">
			 YouTube channel</a>
		</td>
		<td>
			<a href="https://discord.gg/GtpUnsHHT4"><img src="https://www.svgrepo.com/show/353655/discord-icon.svg" height="30px">
			 Discord Server</a>
		</td>
	</tr>
</table>
<h1 align="center">projectZ.py</h1>
<p align="center">Library for working with projectZ servers, below you will see code examples, for more examples see the documentation or the examples folder</p>
<h1 align="center">Login example</h1>

```python
import projectZ

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

<h1 align="center">Async login example</h1>

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

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/xXxCLOTIxXx/projectZ.py",
    "name": "projectZ.py",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "projectZ.py,projectZ,projectZ-py,projectZ-bot,api,python,python3,python3.x,xsarz,official,async,sync",
    "author": "Xsarz",
    "author_email": "xsarzy@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/b3/e7/9b1faf608ce666a9353f8f5cebef38b5cbf978e084661613262f366627df/projectZ.py-1.1.6.8.tar.gz",
    "platform": null,
    "description": "<table align=\"center\">\n\t<tr> <th colspan=\"3\">Library Information</th> </tr>\n\t<tr>\n\t\t<td>\n\t\t\t<a href='https://projectzpy.readthedocs.io/en/latest/'><img src=\"https://pbs.twimg.com/profile_images/525686734760067072/OhsWgbsr_400x400.png\" height=\"30px\">\n\t\t\t Library Documentation</a>\n\t\t</td>\n\t\t<td>\n\t\t\t<a href='https://github.com/xXxCLOTIxXx/projectZ.py'><img src=\"https://upload.wikimedia.org/wikipedia/commons/9/91/Octicons-mark-github.svg\" height=\"30px\">\n\t\t\t GitHub</a>\n\t\t</td>\n</table>\n<table align=\"center\">\n\t</tr>\n\t<tr> <th colspan=\"3\">More info</th> </tr>\n\t<tr>\n\t\t<td>\n\t\t\t<a href=\"https://t.me/DxsarzUnion\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg\" height=\"30px\">\n\t\t\t Telegram Channel</a>\n\t\t</td>\n\t\t<td>\n\t\t\t<a href=\"https://www.youtube.com/channel/UCNKEgQmAvt6dD7jeMLpte9Q\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/0/09/YouTube_full-color_icon_%282017%29.svg\" height=\"30px\">\n\t\t\t YouTube channel</a>\n\t\t</td>\n\t\t<td>\n\t\t\t<a href=\"https://discord.gg/GtpUnsHHT4\"><img src=\"https://www.svgrepo.com/show/353655/discord-icon.svg\" height=\"30px\">\n\t\t\t Discord Server</a>\n\t\t</td>\n\t</tr>\n</table>\n<h1 align=\"center\">projectZ.py</h1>\n<p align=\"center\">Library for working with projectZ servers, below you will see code examples, for more examples see the documentation or the examples folder</p>\n<h1 align=\"center\">Login example</h1>\n\n```python\nimport projectZ\n\nclient = projectZ.Client()\nclient.login(email='email', password='password')\n```\n\n<h1 align=\"center\">Async login example</h1>\n\n```python\nimport projectZ\nimport asyncio\n\n\nclient = projectZ.AsyncClient()\nasync def main():\n\tawait client.login(email='email', password='password')\n\nif __name__ == '__main__':\n\tloop = asyncio.get_event_loop()\n\tloop.run_until_complete(main())\n```",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Library for creating projectZ bots and scripts.",
    "version": "1.1.6.8",
    "split_keywords": [
        "projectz.py",
        "projectz",
        "projectz-py",
        "projectz-bot",
        "api",
        "python",
        "python3",
        "python3.x",
        "xsarz",
        "official",
        "async",
        "sync"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3e79b1faf608ce666a9353f8f5cebef38b5cbf978e084661613262f366627df",
                "md5": "0c2fc46bff945bbab88eda15c7593cea",
                "sha256": "578de3ebd444d0ce2df45c10841e3f7f48b5084d3b85d33d41003e50438be8e2"
            },
            "downloads": -1,
            "filename": "projectZ.py-1.1.6.8.tar.gz",
            "has_sig": false,
            "md5_digest": "0c2fc46bff945bbab88eda15c7593cea",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 21235,
            "upload_time": "2023-04-15T19:44:54",
            "upload_time_iso_8601": "2023-04-15T19:44:54.470583Z",
            "url": "https://files.pythonhosted.org/packages/b3/e7/9b1faf608ce666a9353f8f5cebef38b5cbf978e084661613262f366627df/projectZ.py-1.1.6.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-15 19:44:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "xXxCLOTIxXx",
    "github_project": "projectZ.py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "projectz.py"
}
        
Elapsed time: 0.05653s