Metadata-Version: 2.1
Name: pyrubi
Version: 1.1.0
Summary: This is a powerful library for building self robots in Rubika
Home-page: https://github.com/AliGanji1/pyrubi
Author: Ali Ganji zadeh
Author-email: ali.ganji.za@gmail.com
Keywords: rubika,pyrubi,pyrubika,rubika bot,rubika library,rubik,rubx,rubika-bot,rubika-lib,bot,self bot,rubika.ir,asyncio
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: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Requires-Python: ~=3.7
Description-Content-Type: text/markdown

### Pyrubi 1.1.0

> Pyrubi is a powerful library for building self robots in Rubika

<p align='center'>
    <a href='github.address'>
        <img src='https://iili.io/HIjPRS9.jpg' alt='Pyrubi' width='250'>
    </a>
    <a href='https://github.com/AliGanji1/pyrubi'>
        GitHub
    </a>
</p>

**Example:**
``` python
from pyrubi import Bot, Tools

bot = Bot('TOKEN')

for msg in bot.on_message():
    m = Message(msg)
    if m.text() == 'Hello':
        bot.reply(msg, 'Hello from Pyrubi library')
```

**Async Example:**
``` python
from pyrubi import Bot_async, Tools

bot = Bot_async('TOKEN')

@bot.on_message
async def update(msg):
    m = Message(msg)
    if m.text() == 'Hello':
        await bot.reply(msg, 'Hello from Pyrubi library')
```

### Features

**Fast**, **Easy**, **Async**, **Powerful**

### Installing

``` bash
python -m pip install pyrubi
```
