Skip to main content

Add your description here

Project description

🤖 Async Zulip Bot SDK

Async, type-safe Zulip bot development framework

Python 3.12+ License GitHub release

English | 中文


✨ Features

  • 🚀 Async-First — Built on httpx.AsyncClient for high-performance async operations, fully compatible with official zulip.Client interface
  • 📝 Type-Safe — Complete type hints and automatic validation with Pydantic v2 models
  • 🎯 Command System — Powerful built-in command parser with type checking, argument validation, and auto-generated help
  • 💾 Flexible Storage — Choose between lightweight JSON storage or full SQLAlchemy ORM with Alembic migrations
  • 🌐 Internationalization — Built-in i18n support with JSON-based translation files
  • 🔧 YAML Configuration — Single source of truth for bot settings in bot.yaml
  • 🖥️ Interactive Console — Beautiful Rich-based TUI for managing multiple bots with live logs and command history
  • 📦 Production-Ready — Long-polling event loop, automatic reconnection, and error recovery built-in

📦 Installation

From version v0.2.0 and later, the SDK is published to PyPI via an automated GitHub Actions workflow whenever a GitHub release is created.

Option 1: Install from PyPI (recommended for users)

# Using uv (recommended)
uv pip install async-zulip-bot-sdk

# Or using pip directly
pip install async-zulip-bot-sdk

Option 2: Install from source (for development)

git clone https://github.com/Open-LLM-VTuber/async-zulip-bot-sdk.git
cd async-zulip-bot-sdk

# Using uv (recommended)
uv venv
uv pip install -e .

# Or using venv + pip
python -m venv venv
venv\Scripts\activate  # Windows
source venv/bin/activate  # macOS/Linux
pip install -e .

🚀 Quick Start

⚠️ Breaking change (next major): bot configuration now lives in each bot's bot.yaml. Class-level attributes (e.g., command_prefixes, enable_storage, enable_orm) are ignored. Set prefixes/mention/help/storage/ORM options in the bot's YAML instead of subclass attributes.

Interactive Console (Recommended)

The SDK comes with a built-in interactive console for managing bots, featuring a TUI (Text User Interface) powered by rich.

  1. Run the console:

    python main.py
    

    Features:

    • Rich TUI: Beautiful, split-screen layout for logs, status, and input.
    • Command History: Use Up/Down arrows to navigate previous commands.
    • Log Scrolling: Use PageUp/PageDown to scroll through logs.
    • Bot Management: Start, stop, and reload bots dynamically.

Creating a Single Bot Script

If you prefer a simple script without the manager:

1. Configure Zulip Credentials

Download your zuliprc file:

You can create or regenerate your API Key in Settings - Personal - Account & privacy, enter your password, and select Download zuliprc. Place each bot's file under its own folder, e.g. bots/echo_bot/zuliprc.

2. Configure bots.yaml

Create a bots.yaml file at the root of project, you can refer to bots.yaml.example for details. Define which bots to launch and where to find them:

bots:
  - name: echo_bot
    module: bots.echo_bot
    class_name: BOT_CLASS
    enabled: true
    # Optional override; defaults to bots/<name>/zuliprc
    # zuliprc: bots/echo_bot/zuliprc
    config: {}  # optional per-bot config passed to factory (second arg)

3. Configure per-bot settings (bot.yaml)

Create bots/echo_bot/bot.yaml to set prefixes/mentions/help/storage/ORM:

command_prefixes: ["!", "/"]
enable_mention_commands: true
auto_help_command: true
enable_storage: true
# storage_path: bot_data/echo_bot.db
enable_orm: false
# orm_db_path: bot_data/echo_bot.sqlite
language: en

4. Create Your First Bot

import asyncio

from bot_sdk import (
    BaseBot,
    BotRunner,
    Message,
    CommandSpec,
    CommandArgument,
    setup_logging
)

class MyBot(BaseBot):
    def __init__(self, client):
        super().__init__(client)
        # Register commands (prefixes come from bot.yaml)
        self.command_parser.register_spec(
            CommandSpec(
                name="echo",
                description="Echo back the provided text",
                args=[CommandArgument("text", str, required=True, multiple=True)],
                handler=self.handle_echo,
            )
        )
    
    async def on_start(self):
        """Called when bot starts"""
        print(f"Bot started! User ID: {self._user_id}")
    
    async def handle_echo(self, invocation, message, bot):
        """Handle echo command"""
        text = " ".join(invocation.args.get("text", []))
        await self.send_reply(message, f"Echo: {text}")
    
    async def on_message(self, message: Message):
        """Handle non-command messages"""
        await self.send_reply(message, "Try !help to see available commands!")

BOT_CLASS = MyBot

Remember to save this code in a __init__.py file under the directory your configured in bots.yaml. In this example, you would save it as bots/echo_bot/__init__.py.

5. Run Your Bots

python main.py

📚 Core Concepts

AsyncClient

Fully async Zulip API client mirroring the official zulip.Client interface:

from bot_sdk import AsyncClient

async with AsyncClient(config_file="zuliprc") as client:
    # Get user profile
    profile = await client.get_profile()
    
    # Send messages
    await client.send_message({
        "type": "stream",
        "to": "general",
        "topic": "Hello",
        "content": "Hello, world!"
    })
    
    # Get subscriptions
    subs = await client.get_subscriptions()

Command System

Type-safe command definitions with automatic validation:

from bot_sdk import CommandSpec, CommandArgument

# Define commands with arguments
self.command_parser.register_spec(
    CommandSpec(
        name="greet",
        description="Greet a user",
        args=[
            CommandArgument("name", str, required=True),
            CommandArgument("times", int, required=False),
        ],
        handler=self.handle_greet,
    )
)

async def handle_greet(self, invocation, message, bot):
    name = invocation.args["name"]
    times = invocation.args.get("times", 1)
    greeting = f"Hello, {name}! " * times
    await self.send_reply(message, greeting)

Auto-generated help:

Use !help or !? to automatically show all registered commands and arguments.

Lifecycle Hooks

class MyBot(BaseBot):
    async def on_start(self):
        """Called when bot starts"""
        pass
    
    async def on_stop(self):
        """Called when bot stops"""
        pass
    
    async def on_message(self, message: Message):
        """Called for non-command messages"""
        pass

🔧 Advanced Usage

Custom Command Prefixes and Mention Detection

class MyBot(BaseBot):
    command_prefixes = ("!", "/", ".")
    enable_mention_commands = True  # Enable @bot to trigger commands

Typed Message Models

from bot_sdk import Message, StreamMessageRequest

async def on_message(self, message: Message):
    # Full type hints
    sender = message.sender_full_name
    content = message.content
    
    # Send typed messages
    await self.client.send_message(
        StreamMessageRequest(
            to=message.stream_id,
            topic="Reply",
            content="Typed reply!"
        )
    )

📚 Documentation

Comprehensive API documentation is available:

Documentation includes:

  • 📖 Quick Start Guide
  • 🔧 API Reference (AsyncClient, BaseBot, BotRunner)
  • 💬 Command System
  • 📊 Data Models
  • ⚙️ Configuration Management
  • 📝 Logging

🤝 Contributing

Contributions are welcome! Feel free to submit Pull Requests.

Contributing Documentation: We welcome documentation contributions in both Chinese and English.

🙏 Credits & Notices

📄 License

MIT License - see LICENSE file for details


Made with ❤️ for the Open-LLM-VTuber Zulip team

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

async_zulip_bot_sdk-1.0.1.tar.gz (45.4 kB view details)

Uploaded Source

Built Distribution

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

async_zulip_bot_sdk-1.0.1-py3-none-any.whl (52.7 kB view details)

Uploaded Python 3

File details

Details for the file async_zulip_bot_sdk-1.0.1.tar.gz.

File metadata

  • Download URL: async_zulip_bot_sdk-1.0.1.tar.gz
  • Upload date:
  • Size: 45.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for async_zulip_bot_sdk-1.0.1.tar.gz
Algorithm Hash digest
SHA256 4731c5c0bb82563d1254ea018145010f5ddea6e7dbaf8deb54a45d5109178867
MD5 a0ca2dd1d9c511fb64130d88ce9c529c
BLAKE2b-256 486ee7ba395912a4ee732cca552c1c98cbb067788f9b511a0f0d3926db951d5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_zulip_bot_sdk-1.0.1.tar.gz:

Publisher: python-publish.yml on Open-LLM-VTuber/async-zulip-bot-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file async_zulip_bot_sdk-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for async_zulip_bot_sdk-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 613fce003ba1aec8a0522cc9e2740b6eb4d95821e1c739337665d160573eda08
MD5 97ca515210ccf276f4e2cbce63fb6f3a
BLAKE2b-256 93cf768359e2c5baa4406c469bc5e0878884e310504b7d59bd40fdadb30f2f22

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_zulip_bot_sdk-1.0.1-py3-none-any.whl:

Publisher: python-publish.yml on Open-LLM-VTuber/async-zulip-bot-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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