Metadata-Version: 2.1
Name: PyRubikaBotAPI
Version: 1.0.1
Summary: A Python library with a simple and familiar interface for working with the official Rubika bot API
Home-page: https://github.com/alireza-sadeghian/PyRubikaBotAPI
Author: Alireza Sadeghian
Author-email: alireza.amid110@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENCE
Requires-Dist: requests

# PyRubikaBotAPI

کتابخانه قدرتمند و آشنا برای ساخت ربات های تخصصی روبیکا

## نصب
```bash
pip install PyRubikaBotAPI

```

## مثال ساده

```python
from rubibot import RubiBot

bot = RubiBot("YOUR_TOKEN")

@bot.message_handler(commands=["start"])
def start(message):
    bot.send_message(message.chat_id, "سلام! خوش آمدید!")

bot.polling()
```

برای استفاده دقیقتر حتما مستندات رو مطالعه بفرمایید و یا برای دریافت سورس کد ها 
و مثال ها به کانال روبیکای ما سر بزنید

## مستندات:

Rubika: https://rubika.ir/pyrubikabotapi
GitHub: https://github.com/alireza-sadeghian/PyRubikaBotAPI
