Metadata-Version: 2.1
Name: monsgrams
Version: 1.2
Summary: A simple Python library for creating telegram bot.
Home-page: https://github.com/tech-voyager/monsgrams/
Author: grubx64
License: MIT
Description-Content-Type: text/markdown
Requires-Dist: aiohttp>=3.9.3

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

# EXAMPLE USE!
```python
from bot import Bot

bot = Bot("your_token")

@bot.event
def on_message(message):
  if message.text == "/start":
    message.reply("Cool this lib!")

bot.listen_message()
```
DOCS - wtiting..
(in future: grub-project.vercel.app/wiki/monsgrams/)
