Metadata-Version: 2.4
Name: botiksdk
Version: 0.1.0
Summary: Vondic Botik SDK
Author-email: Vondic <support@vondic.com>
License: MIT
Project-URL: Homepage, https://github.com/vondic/botiksdk
Project-URL: Bug Tracker, https://github.com/vondic/botiksdk/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.32.5

# Vondic Botik SDK

A Python SDK for building bots on the Vondic platform.

## Installation

```bash
pip install botiksdk
```

## Usage

```python
from botiksdk import Bot, Dispatcher, Message

bot = Bot(token="YOUR_BOT_TOKEN")
dp = Dispatcher(bot)

@dp.message_handler()
async def echo(message: Message):
    await message.answer(message.text)

if __name__ == "__main__":
    dp.start_polling()
```
