Metadata-Version: 2.4
Name: dinsky
Version: 0.1.0
Summary: Simple async-like REST bot framework
Author: Dinsky
License: MIT
Project-URL: Homepage, https://github.com/example/dinsky
Keywords: bot,rest,api,framework
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Dinsky

Simple REST bot framework with decorators.

## Install

pip install dinsky

## Example

```python
from dinsky import Bot

bot = Bot("https://api.example.com", "token")


@bot.onready
def ready():
    print("ready")


@bot.command("ping")
def ping(ctx):
    return ctx.reply("pong")


bot.run()
```
