Metadata-Version: 2.4
Name: yukibot
Version: 1.1.1
Summary: The official, simple, and D1-optimized Python framework for YukiChat Bots.
Home-page: https://github.com/Vasiliy-katsyka/yukibot
Author: YukiChat
Author-email: kviappsgames@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.1
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# YukiBot
The official Python library for YukiChat. Feels like `telebot`, but optimized for YukiChat.

## Installation
```bash
pip install yukibot
```

## Quick Start

```Python
from yukibot import YukiBot

bot = YukiBot("yk_bot_your_token_here")

@bot.message_handler(commands=['start'])
def send_welcome(message):
    bot.reply_to(message, "Welcome to YukiChat!")

bot.polling()
```
