Metadata-Version: 2.1
Name: GODBOY
Version: 0.0.4
Summary: A Secure  and Powerful Python-Telethon Based Library For Userbots.
Home-page: https://github.com/GODBOYX/GODBOY
Author: GODBOYX
Author-email: rj05tilak@gmail.com
License: GNU AFFERO GENERAL PUBLIC LICENSE (v3)
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: telethon
Requires-Dist: python-decouple (==3.3)
Requires-Dist: TgCrypto
Requires-Dist: python-dotenv (==0.15.0)
Requires-Dist: cloudscraper

## Usage


=> Create folders named `plugins`, `addons`, `assistant` and `resources`.<br/>
=> Add your plugins in the `plugins` folder and others accordingly.<br/>
=> Create a `.env` file with `API_ID`, `API_HASH`, `STRING_SESSION`, 
`TG_BOT_USER_NAME_BF_HER`, `TG_BOT_TOKEN_BF_HER` as mandatory environment variables.<br/>
=> Run `python -m GODBOY` to start the bot.<br/>

### Creating plugins
To work everywhere

```python
@bot.on(admin_cmd(pattern="start"))
async def _(event):   
    await event.edit("GODBOY Is Started")   
```

Assistant Plugins 👇

```python
@god.on(events.NewMessage(pattern=("/start")))   
async def _(event):   
    await god.send_message("Hi Master Your Assistant is in your service😇")   
```


