Metadata-Version: 2.1
Name: py-Ayra
Version: 2.1.3b2
Summary: A Secure and Powerful Python-Telethon Based Library For Ayra Userbot.
Home-page: https://github.com/naya1503/pyAyra
Author: naya1503
Author-email: cosmospanas70@gmail.com
License: GNU AFFERO GENERAL PUBLIC LICENSE (v3)
Project-URL: Bug Tracker, https://github.com/naya1503/pyAyra/issues
Project-URL: Documentation, https://ultroid.tech
Project-URL: Source Code, https://github.com/naya1503/pyAyra
Description: # py-Ayra Library
        
        Core library of [The Ayra](https://github.com/naya1503/Ayra), a python based telegram userbot.
        
        [![PyPI - Version](https://img.shields.io/pypi/v/py-Ayra?style=round)](https://pypi.org/project/py-Ayra)    
        [![PyPI - Downloads](https://img.shields.io/pypi/dm/py-Ayra?label=DOWNLOADS&style=round)](https://pypi.org/project/py-Ayra)    
        [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/naya1503/Naya-Userbot/graphs/commit-activity)
        [![Open Source Love svg2](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/naya1503/Naya-Userbot)
        [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://makeapullrequest.com)
        
        # Installation
        ```bash
        pip3 install -U py-Ayra
        ```
        
        # Documentation 
        [![Documentation](https://img.shields.io/badge/Documentation-Ayra-blue)](http://ayra.tech/)
        
        # Usage
        - Create folders named `plugins`, `addons`, `assistant` and `resources`.   
        - Add your plugins in the `plugins` folder and others accordingly.   
        - Create a `.env` file with following mandatory Environment Variables
           ```
           API_ID
           API_HASH
           SESSION
           MONGO_URI
           ```
        - Check
        [`.env.sample`](https://github.com/naya1503/py-Ayra/blob/main/.env.sample) for more details.   
        - Run `python3 -m Ayra` to start the bot.   
        
        ## Creating plugins
         - ### To work everywhere
        
        ```python
        @ayra_cmd(
            pattern="start"
        )   
        async def _(e):   
            await e.eor("Ayra Started!")   
        ```
        
        - ### To work only in groups
        
        ```python
        @ayra_cmd(
            pattern="start",
            groups_only=True,
        )   
        async def _(e):   
            await eor(e, "Ayra Started.")   
        ```
        
        - ### Assistant Plugins 👇
        
        ```python
        @asst_cmd("start")   
        async def _(e):   
            await e.reply("Ayra Started.")   
        ```
        
        See more working plugins on [the offical repository](https://github.com/naya1503/py-Ayra)!
        
        > Made with 💕 by [Kynan](https://t.me/kenapanan).    
        
        
        # License
        [![License](https://www.gnu.org/graphics/agplv3-155x51.png)](LICENSE)   
        Naya-Userbot is licensed under [GNU Affero General Public License](https://www.gnu.org/licenses/agpl-3.0.en.html) v3 or later.
        
        # Credits
        * [![Kynan-Devs](https://img.shields.io/static/v1?label=Kynan&message=devs&color=critical)](https://t.me/kenapanan)
        * [Lonami](https://github.com/Lonami) for [Telethon](https://github.com/LonamiWebs/Telethon)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >3.7, <3.12
Description-Content-Type: text/markdown
