Metadata-Version: 2.3
Name: zalobot-python
Version: 0.1.2
Summary: Python SDK for the Zalo Bot API
Author: NovaH00
Author-email: NovaH00 <trantay2006super@gmail.com>
Requires-Dist: httpx>=0.28.1
Requires-Dist: pydantic>=2.12.5
Requires-Dist: requests>=2.32.5
Requires-Python: >=3.14
Description-Content-Type: text/markdown

# WIP: Python SDK for the ZaloBot API

## Installation
For uv-astral  
```bash
uv add zalobot_python
```
For pip  
```bash
pip install zalobot_python
```

Usage
```python
import asyncio
from zalobot_python import ZaloBot, BotInfo 

bot = ZaloBot(BOT_TOKEN="<BOT TOKEN>")

async def main():
    bot_info: BotInfo = await bot.getMe()

    print(f"Bot ID: {bot_info.id}")
    print(f"Bot Name: {bot_info.display_name}")

asyncio.run(main())
```
