Metadata-Version: 2.1
Name: py-Hugo
Version: 0.1.1
Summary: A Secure and Powerful Python-Telethon Based Library For Hugo Userbot.
Home-page: https://github.com/TeamHugoX/pyHugo
Author: TeamHugo
Author-email: saycosanz@gmail.com
License: GNU AFFERO GENERAL PUBLIC LICENSE (v3)
Project-URL: Bug Tracker, https://github.com/TeamHugoX/py-Hugo/issues
Project-URL: Source Code, https://github.com/TeamHugoX/pyHugo
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: redis
Requires-Dist: python-decouple (==3.3)
Requires-Dist: python-dotenv (==0.15.0)
Requires-Dist: aiofiles
Requires-Dist: aiohttp[speedups]
Requires-Dist: hiredis
Requires-Dist: psycopg2-binary

# py-Hugo Library
A stable Hugo userbot base library, based on Telethon.

[![PyPI - Version](https://img.shields.io/pypi/v/py-Hugo?style=for-the-badge)](https://pypi.org/project/py-Hugo)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/py-Hugo?label=DOWNLOADS&style=for-the-badge)](https://pypi.org/project/py-Hugo)

## Installation
`pip install py-Hugo`

### Creating plugins
- To work everywhere

```python
@hugo_cmd(
    pattern="start",
)   
async def _(e):   
    await eor(e, "Hugo Started")   
```

- To work only in groups

```python
@hugo_cmd(
    pattern="start",
    groups_only=True,
)   
async def _(e):   
    await eor(e, "Hugo Started")   
```

- Assistant Plugins 👇

```python
@asst_cmd("start")   
async def _(e):   
    await e.reply("Hugo Started")   
```

Made with 💕 by [@TeamHugo](https://t.me/TeamHugo). <br />


# License
Hugo is licensed under [GNU Affero General Public License](https://www.gnu.org/licenses/agpl-3.0.en.html) v3 or later.

[![License](https://www.gnu.org/graphics/agplv3-155x51.png)](LICENSE)



