Metadata-Version: 2.4
Name: tflows
Version: 0.0.1
Summary: Simple automation and bot framework inspired by aoi.js style syntax
Author: Tonie
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: discord.py

# tflow

tflow is a lightweight automation and Discord bot framework inspired by aoi.js style syntax.

## Features
- Simple command system
- Automation engine (WIP)
- Discord bot abstraction

## Example

```python
from tflow import FlowBot

bot = FlowBot(prefix="!")

bot.command(
    name="ping",
    code="pong"
)

bot.run("TOKEN")
