Skip to main content

Python client for chatbot platform

Project description

pychatbot2

A Python SDK for the chatbot platform, providing a clean and type-safe interface for interacting with messaging platforms.

Features

  • Type-safe interfaces using Python's type hints
  • Async/await support for all operations
  • Event-driven architecture using Server-Sent Events (SSE)
  • Support for various message content types (text, image, audio, card)
  • Comprehensive error handling and logging
  • Easy integration with messaging platforms

Installation

pip install pychatbot2

Quick Start

from pychatbot2 import ChatbotClient, ChatbotClientOptions, CommandRunner, Contact, ContactType, ChatMessagePayload, ChatMessagePlainContent

class MyCommandRunner(CommandRunner):
    async def on_start(self, payload):
        return {
            "self": Contact(
                contact_type=ContactType.PRIVATE,
                contact_id="user123",
                name="My Bot"
            ),
            "contacts": []
        }
    
    async def get_self(self, payload):
        return Contact(
            contact_type=ContactType.PRIVATE,
            contact_id="user123",
            name="My Bot"
        )
    
    async def get_contacts(self, payload):
        return []
    
    async def get_contact_info(self, payload):
        return {
            "name": "Test Contact",
            "members": []
        }
    
    async def send_chat_message(self, payload):
        # Implement message sending logic
        pass

# Create client options
options = ChatbotClientOptions(
    base_url="https://api.example.com",
    api_key="your-api-key",
    message_platform_type="custom",
    message_platform_account_id="account123",
    command_runner=MyCommandRunner()
)

# Create and start the client
client = ChatbotClient(options)
await client.start()

# Handle incoming messages
async def handle_message(message):
    payload = ChatMessagePayload(
        contact_type=ContactType.PRIVATE,
        contact_id="user123",
        message_id="msg123",
        sender_id="sender123",
        content=ChatMessagePlainContent(text="Hello!"),
        mentioned=False
    )
    await client.on_receive_chat_message(payload)

Development

Setup

  1. Clone the repository
  2. Install development dependencies:
    pip install -e ".[dev]"
    

Running Tests

pytest

Code Style

This project uses:

  • Black for code formatting
  • isort for import sorting
  • mypy for type checking

Run the formatters:

black .
isort .

License

MIT License

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

pychatbot2-0.1.1.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

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

pychatbot2-0.1.1-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file pychatbot2-0.1.1.tar.gz.

File metadata

  • Download URL: pychatbot2-0.1.1.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for pychatbot2-0.1.1.tar.gz
Algorithm Hash digest
SHA256 53502753b8003a14597e30045626e544eeb29199b9d417162754ec2bb69bc00d
MD5 0d9f1df75390242f77fe3c48230a4308
BLAKE2b-256 d932ce823b51bf551121bebed78c287fe191aa4ca29bc2a091650f0fdf5142ed

See more details on using hashes here.

File details

Details for the file pychatbot2-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: pychatbot2-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for pychatbot2-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3b45601704fff700537e14924a1820fe50559661122bfe5d66ab8f71a51a303b
MD5 baa48a25c824ea2c9dc635aa16718762
BLAKE2b-256 bf5798372a1b93f926c90c4eeddc9325b8719b88990871b60fa77f0f5efba636

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