Metadata-Version: 2.4
Name: easyaiogram
Version: 0.1.0
Summary: The library based on making telegram bots and simple version of aigram.
Author-email: Bobojon <pubgmbobojon@gmail.com>
License: MIT
Project-URL: Homepage, https://instagram.com/bbbv_vv11
Project-URL: Issues, https://github.com/bobojonabdurahmonov
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# 🤖 EasyAiogram

**EasyAiogram** is a beginner-friendly wrapper for the [Aiogram](https://docs.aiogram.dev/) framework.  
It simplifies creating Telegram bots by making commands, inline buttons, and callbacks effortless — no boilerplate, no async headaches.

---

## 🚀 Features

✅ Create bots with **just a few lines**  
✅ Add **commands** easily  
✅ Build **inline keyboards** with a simple `.append()` chain  
✅ Handle **callbacks** without extra setup  
✅ Clean, object-oriented API — perfect for both beginners and small projects

---

## 🧩 Installation

```bash
pip install aiogram
pip install easyaiogram


# Example usage

```bash
from easy_aiogram import EasyAiogram

bot = EasyAiogram("YOUR_BOT_TOKEN")

# Create an inline keyboard
main_key = bot.createinkey("main").append("Press me", "pressed")

# Register a command
bot.makecommand("/start", "Welcome to Easy Aiogram!", main_key)

# Handle the callback
bot.oncallback("pressed", "You pressed the button!")

# Start the bot
bot.startbot()
```
