Metadata-Version: 2.4
Name: nios-bot
Version: 0.1.0
Summary: Асинхронный клиент для Bot API на базе httpx
Author-email: Ваше Имя <your-email@example.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.20.0
Dynamic: license-file

# NiosBot API

Асинхронная библиотека для работы с API ботов.

## Установка

```bash
pip install nios-bot
```
Использование

```Python
import asyncio
from nios_bot import NiosBot

bot = NiosBot(token="your_token_here")

@bot.message_handler()
async def echo(message):
    chat_id = message["chat"]["id"]
    text = message.get("text", "")
    await bot.send_message(chat_id=chat_id, text=f"Вы сказали: {text}")

async def main():
    await bot.start_polling()

if __name__ == "__main__":
    asyncio.run(main())
```
