Metadata-Version: 2.4
Name: pycodemeet
Version: 1.1.0
Summary: Python SDK for CodeMeet bots
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: requires-python

# pycodemeet

کتابخانه پایتون برای ساخت Botهای CodeMeet با API ساده و Handler محور.

## نصب

```bash
pip install pycodemeet
```

## شروع سریع

```python
from pycodemeet import Bot

bot = Bot("TOKEN")

bot.ms_start("سلام 👋")
bot.ms_help("راهنما")
bot.ms_about("ساخته شده با pycodemeet")

@bot.on_message
def messages(message):
    if message.text == "سلام":
        message.reply("سلام 👋")

bot.run()
```

## امکانات

* Message Handler
* Callback Handler
* Command
* Button و InlineKeyboard
* مدیریت پیام
* Chat Action
* Game
* Player
* Inventory
* Cooldown
* Quest
* Leaderboard

## نسخه

`1.1.0`
