Metadata-Version: 2.4
Name: zehnex
Version: 1.1.0
Summary: Zehnex: Next-Gen Hybrid Telegram Framework (Aiogram + Telebot style)
Author-email: Zehnex Team <zehnex@example.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/zehnex-py/zehnex
Keywords: telegram,bot,framework,async,zehnex,aiogram,telebot,youtube-downloader,currency,wikipedia,qrcode,pdf
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Communications :: Chat
Classifier: Framework :: AsyncIO
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.27.0
Requires-Dist: yt-dlp>=2024.1.0
Requires-Dist: reportlab>=4.0.0
Requires-Dist: qrcode[pil]>=7.4.2
Requires-Dist: Pillow>=10.0.0
Dynamic: license-file

# 🚀 Zehnex 1.1.0

**Next-Gen Hybrid Telegram Bot Framework** — Combines the simplicity of `telebot` with the power of `aiogram`. Ultra-fast, async, and feature-rich.

```bash
pip install zehnex
```

---

## 🌟 Nima uchun Zehnex?

- **Gibrid API:** Ham `aiogram` (Context style), ham `telebot` (Handler style) uslubida kod yozish imkoniyati.
- **Ultra-tezkor:** `httpx` va `asyncio.Semaphore` asosidagi yuqori samarali engine.
- **Barchasi ichida:** Video yuklovchi, valyuta kursi, Wikipedia va QR kod generatori tayyor modul sifatida.

---

## 🚀 Tez boshlash

### Aiogram uslubida:
```python
from zehnex import Zehnex, Filter

dp = Zehnex("YOUR_TOKEN")

@dp.message(commands=["start"])
async def start(ctx):
    await ctx.answer("Salom! Men Zehnex frameworkida ishlayapman 🚀")

dp.run()
```

### Telebot uslubida:
```python
from zehnex import Zehnex

bot = Zehnex("YOUR_TOKEN")

@bot.message_handler(commands=["start"])
async def start(message):
    await bot.send_message(message.chat_id, "Salom!")

bot.run()
```

---

## 🛠 O'rnatish

```bash
pip install zehnex
```

---

## 📦 Modullar

| Modul | Tavsif |
|-------|--------|
| `Zehnex` | Asosiy engine (Gibrid API) |
| `VideoDownloader` | YouTube va boshqa saytlardan video yuklash |
| `CurrencyConverter` | Real-vaqt valyuta kurslari |
| `WikiToPDF` | Wikipedia qidiruv va PDF yaratish |
| `QRGenerator` | QR kod yaratish |

---

## 📄 Litsenziya
MIT License. Created by Zehnex Team.
