Skip to main content

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

Project description

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+ License: 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.
  • ⌨️ 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

pip install fastbotty

2. Create Project

fastbotty init my_notifier
cd my_notifier

3. Configure

Edit config.yaml:

bot:
  token: "${TELEGRAM_BOT_TOKEN}"
endpoints:
  - path: "/notify/orders"
    chat_id: "-1001234567890"
    formatter: "plain"

4. Run

export TELEGRAM_BOT_TOKEN="your-bot-token"
fastbotty run

5. Send Notification

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

📚 Documentation


🔧 Configuration Reference

Bot Configuration

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

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

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

Endpoint Configuration

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

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:

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:

TELEGRAM_BOT_TOKEN=your_bot_token
WEBHOOK_URL=https://yourapp.onrender.com
PORT=3000

⚙️ CLI Commands

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:

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:

endpoints:
  - path: "/notify"
    chat_id: "123456789"
    formatter: "my_formatter"
    plugin_config:
      prefix: "🔔 Alert:"

📡 API Response

Success:

{
  "status": "sent",
  "message_id": 123,
  "chat_id": "8345389653"
}

Error (structured 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

git clone https://github.com/venopyx/fastbotty.git
cd fastbotty
make install

Development Commands

source .venv/bin/activate
make test
make lint
make format
make build
make clean

Publishing

See docs/PUBLISHING.md for detailed release instructions.

Quick release:

make release version=1.0.4 notes=docs/RELEASE_NOTES.md

🔍 Getting Your Chat ID

  1. Message @userinfobot on Telegram.
  2. Or send a message to your bot and check:
    curl https://api.telegram.org/bot<TOKEN>/getUpdates
    

📜 License

MIT License – see LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastbotty-0.0.2.tar.gz (34.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fastbotty-0.0.2-py3-none-any.whl (28.3 kB view details)

Uploaded Python 3

File details

Details for the file fastbotty-0.0.2.tar.gz.

File metadata

  • Download URL: fastbotty-0.0.2.tar.gz
  • Upload date:
  • Size: 34.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for fastbotty-0.0.2.tar.gz
Algorithm Hash digest
SHA256 5a71c1cc316f46638a1cf3cbf468f7cf24b59a636fd6d0883e20ca9a9884020a
MD5 c1f9e73a66ff09dfeb0cbda31f33eb4a
BLAKE2b-256 dfd1ae8048d20ddd10743670b89871a9336be240b0dd440457d7cc4232969d6b

See more details on using hashes here.

File details

Details for the file fastbotty-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: fastbotty-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 28.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for fastbotty-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 7b8a2b525e81dad64e3884e61752da62dcf822d0d98fff48c9adebefbb83f949
MD5 1c5a6a030d3df5535bfc34478e7e678f
BLAKE2b-256 adacaaf00af13820094a555c672db72c6a16998aa43c394fa16d4384ee57a88e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page