Metadata-Version: 2.1
Name: GODBOY
Version: 0.0.1
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)
Description: ## 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`, `SESSION`, 
                `BOT_TOKEN`, `BOT_USERNAME` as mandatory environment variables<br/>
                => Run `python -m GODBOY` to start the bot.<br/>
                
                ### Creating plugins
                To work everywhere
                
                ```python
                @admin_cmd(
                    pattern="start",
                )   
                async def _(e):   
                    await eor(e, "GODBOY Started")   
                ```
                
                To work only in groups
                
                ```python
                @admin_cmd(
                    pattern="start",
                    groups_only=True,
                )   
                async def _(e):   
                    await eor(e, "GODBOY Started")   
                ```
                
                Assistant Plugins 👇
                
                ```python
                @asst_cmd("start")   
                async def _(e):   
                    await e.reply("GODBOY Started")   
                ```
                
        
        
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
