Metadata-Version: 2.4
Name: fastbotty
Version: 0.0.3
Summary: Lightning-fast, super-simple Python bot framework for building powerful, interactive bots in under a minute using a single, clean YAML configuration file.
Author-email: Gemechis Chala <gladsonchala@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/venopyx/fastbotty
Project-URL: Repository, https://github.com/venopyx/fastbotty
Project-URL: Documentation, https://github.com/venopyx/fastbotty#readme
Keywords: bot,framework,yml,fast,telegram,discord,slack,email,notifications,webhook,fastapi,async,python-telegram-bot
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Framework :: FastAPI
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi>=0.104.0
Requires-Dist: pydantic>=2.5.0
Requires-Dist: pydantic-settings>=2.1.0
Requires-Dist: aiohttp>=3.9.0
Requires-Dist: uvicorn[standard]>=0.30.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: jinja2>=3.1.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: click>=8.1.0
Provides-Extra: dev
Requires-Dist: pytest>=7.4.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
Requires-Dist: black>=23.11.0; extra == "dev"
Requires-Dist: ruff>=0.1.6; extra == "dev"
Requires-Dist: mypy>=1.7.0; extra == "dev"
Requires-Dist: build>=1.0.0; extra == "dev"
Requires-Dist: twine>=4.0.0; extra == "dev"
Dynamic: license-file

# FastBotty

> **Lightning-fast, super-simple Python bot framework** for building powerful, interactive bots in under a minute using a single, clean YAML configuration file.

[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

**FastBotty** is a modern, webhook-driven bot framework built on **FastAPI**, designed for effortless creation of rich, interactive notification bots. Currently, it supports **Telegram** (via `python-telegram-bot`), with plans to expand to other platforms.

Receive HTTP webhooks from any source, transform payloads intelligently, and deliver beautifully formatted messages with full support for **inline keyboards** and **media**—all configured in one intuitive `config.yml` file.

Ideal for:
- Real-time alerts
- E-commerce order notifications
- Monitoring systems
- CI/CD pipeline updates
- Server health reporting
- Any integration requiring instant, engaging bot deliveries

---

## ✨ Features

- **🚀 Simple**: Install, configure, and run in under 5 minutes.
- **🔌 Plugin System**: Custom formatters without touching core code.
- **📱 All Chat Types**: Private chats, groups, supergroups, and channels.
- **📢 Broadcast**: Send to multiple chats simultaneously.
- **🖼️ Rich Media**: Single images, photo galleries (up to 10), documents, videos, audio, and voice messages.
- **📍 Location Sharing**: Send GPS coordinates with optional live tracking.
- **🎹 Inline Keyboards**: Interactive buttons with dynamic templates.
- **💳 Payment Support**: Send invoices with pay buttons for Telegram Stars and other providers.
- **⌨️ Reply Keyboards**: Custom keyboards with buttons for contacts, locations, and more.
- **🤖 Command Handlers**: Respond to `/start`, `/help`, etc.
- **🌐 Environment Variables**: Universal `${VAR}` support in all config fields.
- **🏷️ Custom Labels**: Map `order_id` → `🆔 Order ID`.
- **🔀 Field Mapping**: Map nested JSON fields with dot notation.
- **📝 Jinja2 Templates**: Conditionals, loops, and filters.
- **🎨 Formatters**: Plain text, Markdown, or custom plugins.
- **🔒 Secure**: API key authentication.
- **🌍 CORS Ready**: Configurable CORS for web frontends.
- **♻️ Reliable**: Automatic retries with exponential backoff.
- **🐳 Docker Ready**: Easy containerized deployment.

---

## 🛠️ Quick Start

### 1. Install
```bash
pip install fastbotty
```

### 2. Create Project
```bash
fastbotty init my_notifier
cd my_notifier
```

### 3. Configure
Edit `config.yaml`:
```yaml
bot:
  token: "${TELEGRAM_BOT_TOKEN}"
endpoints:
  - path: "/notify/orders"
    chat_id: "-1001234567890"
    formatter: "plain"
```

### 4. Run
```bash
export TELEGRAM_BOT_TOKEN="your-bot-token"
fastbotty run
```

### 5. Send Notification
```bash
curl -X POST http://localhost:8000/notify/orders \
  -H "Content-Type: application/json" \
  -d '{"message": "New order received!", "order_id": 123}'
```

---

## 📚 Documentation

- **[USAGE.md](docs/USAGE.md)**: Complete usage guide with examples.
- **[CONTRIBUTING.md](CONTRIBUTING.md)**: Guide for contributors.
- **[docs/PUBLISHING.md](docs/PUBLISHING.md)**: Release and publishing guide.
- **[docs/FUTURE.md](docs/FUTURE.md)**: Roadmap and planned features.

---

## 🔧 Configuration Reference

### Bot Configuration
```yaml
bot:
  token: "${TELEGRAM_BOT_TOKEN}" # Bot token (supports env vars)
  test_mode: false # Log instead of sending (for testing)
  webhook_url: "${WEBHOOK_URL}" # Public URL for receiving updates
  webhook_path: "/bot/webhook" # Webhook endpoint path
```

### Templates
```yaml
templates:
  order_received: |
    🛒 *New Order \#{{ order_id }}*

    Customer: {{ customer }}
    Total: {{ total }}
```

### Endpoint Configuration
```yaml
endpoints:
  - path: "/webhook/orders" # HTTP endpoint path
    chat_id: "8345389653" # Single chat ID
    chat_ids: # Or multiple chat IDs
      - "8345389653"
      - "-1001234567890"
      - "@my_channel"
    formatter: "markdown" # plain, markdown, or plugin name
    template: "order_received" # Use template instead of formatter
    parse_mode: "MarkdownV2" # Telegram parse mode
    labels: # Custom display labels
      order_id: "🆔 Order"
      customer: "👤 Customer"
    field_map: # Map incoming fields
      image_url: "product.photo" # Supports dot notation
      image_urls: "product.gallery"
```

### Server Configuration
```yaml
server:
  host: "0.0.0.0"
  port: 8000
  api_key: "${API_KEY}" # Optional authentication
  cors_origins: ["*"] # CORS allowed origins
logging:
  level: "INFO" # DEBUG, INFO, WARNING, ERROR
```

---

## 🌐 Environment Variables
All config fields support `${VAR}` syntax with optional defaults:
```yaml
bot:
  token: "${TELEGRAM_BOT_TOKEN}"
  webhook_url: "${WEBHOOK_URL}"
server:
  port: "${PORT:-8000}" # Use PORT or default to 8000
  cors_origins: ["${CORS_ORIGIN:-*}"]
```

Create a `.env` file:
```bash
TELEGRAM_BOT_TOKEN=your_bot_token
WEBHOOK_URL=https://yourapp.onrender.com
PORT=3000
```

---

## ⚙️ CLI Commands
```bash
fastbotty init <name> # Create new project
fastbotty run # Start server
fastbotty run --reload # Start with auto-reload (dev)
fastbotty validate # Validate config file
fastbotty webhook setup # Register webhook with Telegram
fastbotty webhook info # Show webhook status
fastbotty webhook delete # Remove webhook
fastbotty --version # Show version
```

---

## 🔌 Custom Plugins
Create `plugins/my_formatter.py`:
```python
from fastbotty import IPlugin

class MyFormatter(IPlugin):
    @property
    def name(self):
        return "my_formatter"

    def format(self, payload: dict, config: dict) -> str:
        prefix = config.get("prefix", "📢")
        return f"{prefix} {payload.get('message', '')}"
```

Use in config:
```yaml
endpoints:
  - path: "/notify"
    chat_id: "123456789"
    formatter: "my_formatter"
    plugin_config:
      prefix: "🔔 Alert:"
```

---

## 📡 API Response

**Success:**
```json
{
  "status": "sent",
  "message_id": 123,
  "chat_id": "8345389653"
}
```

**Error (structured JSON):**
```json
{
  "detail": {
    "error": "invalid_api_key",
    "message": "Invalid or missing API key"
  }
}
```
Error codes: `invalid_api_key`, `formatter_not_found`, `send_failed`

---

## 🛠️ Development

### Setup Development Environment
```bash
git clone https://github.com/venopyx/fastbotty.git
cd fastbotty
make install
```

### Development Commands
```bash
source .venv/bin/activate
make test
make lint
make format
make build
make clean
```

### Publishing
See **[docs/PUBLISHING.md](docs/PUBLISHING.md)** for detailed release instructions.

Quick release:
```bash
make release version=1.0.4 notes=docs/RELEASE_NOTES.md
```

---

## 🔍 Getting Your Chat ID
1. Message [@userinfobot](https://t.me/userinfobot) on Telegram.
2. Or send a message to your bot and check:
   ```bash
   curl https://api.telegram.org/bot<TOKEN>/getUpdates
   ```

---

## 📜 License
MIT License – see **[LICENSE](LICENSE)** for details.
