Metadata-Version: 2.1
Name: monsgrams
Version: 0.4
Summary: A simple Python library for creating telegram bot.
Author: grubx64
License: MIT
Description-Content-Type: text/markdown

**This library provides interesting opportunities for creating telegram bots.
convenient syntax, decorators.**

# EXAMPLE USE!
```python
from monsgrams import Bot
bot = Bot("your_token")

@bot.command("start")
async def start(ctx, chat_id):
    await ctx.send_message(chat_id, "Hello!")

bot.startPolling()
```
