Metadata-Version: 2.1
Name: py-Lion
Version: 1.0.0
Summary: A Secure and Powerful Python-Telethon Based Library For Lion-X Userbot.
Home-page: https://github.com/TeamLion-X/Lion-x
Author: TeamLion
Author-email: jtatagaga@gmail.com
License: GNU AFFERO GENERAL PUBLIC LICENSE (v3)
Description: # py-Lion Library
        A stable userbot base library, based on Telethon.
        
        [![PyPI - Version](https://img.shields.io/pypi/v/py-Lion?style=for-the-badge)](https://pypi.org/project/py-Lion)
        [![PyPI - Downloads](https://img.shields.io/pypi/dm/py-Lion?label=DOWNLOADS&style=for-the-badge)](https://pypi.org/project/py-Lion)
        
        ## Installation
        `pip install py-Lion`
        
        ## 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`, `REDIS_URI`, `REDIS_PASSWORD` & 
        `LOG_CHANNEL` as mandatory environment variables. Check
        [`.env.sample`](https://github.com/TeamLion-X/Lion-x/.env.sample) for more details.<br/>
        => Run `python -m pyLion` to start the bot.<br/>
        
        ### Creating plugins
        To work everywhere
        
        ```python
        @Lion_cmd(
            pattern="start",
        )   
        async def _(e):   
            await eor(e, "Lion Started")   
        ```
        
        To work only in groups
        
        ```python
        @Lion_cmd(
            pattern="start",
            groups_only=True,
        )   
        async def _(e):   
            await eor(e, "Lion Started")   
        ```
        
        Assistant Plugins 👇
        
        ```python
        @asst_cmd("start")   
        async def _(e):   
            await e.reply("Lion Started")   
        ```
        
        Made with 💕 by [@TeamLion](https://github.com/TeamLion-X/Lion-x). <br />
        
        # Credits
        * [Lonami](https://github.com/LonamiWebs/) for [Telethon](https://github.com/LonamiWebs/Telethon)
        
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
