Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

chattolib

Unofficial async Python client library for the Chatto webchat API.

Chattolib versions track the Chatto server version they target. The current release targets Chatto's ConnectRPC API. Request/response traffic uses the official connectrpc Python package; the realtime channel is a binary protobuf WebSocket at /api/realtime (needs the [realtime] extra).

chattolib is a bot library. It drives bot accounts, which authenticate with a key used directly as a bearer token (no password, no /auth/login round-trip). Normal humans use the Chatto web app; you reach the API here as a bot. See the bot guide.

Install

pip install chattolib

Quick start

import asyncio
from chattolib import ChattoClient


async def main():
    # Public discovery — no auth required
    async with ChattoClient() as anon:
        profile, login = await anon.get_server()
        print(f"Chatto {profile.version}: {profile.name}")

    # Authenticated calls — a bot key is used directly as a bearer token
    async with ChattoClient(token="cht_BK_...") as client:
        me = await client.me()
        print(f"Authenticated as {me.display_name}")

        for entry in await client.list_rooms():
            if entry.room:
                print(f"  - {entry.room.name}")


asyncio.run(main())

For a full bot (event handlers, say/reply/react, presence, auto-join), use the higher-level :class:~chattolib.bot.Bot facade — see docs/bots.md.

Realtime

Install with the extra:

pip install 'chattolib[realtime]'

Then stream live events:

from chattolib import stream_events

async with ChattoClient(token="cht_BK_...") as client:
    async for event in stream_events(client):
        print(event.kind, event.actor_id, event.payload)

event.kind names the protobuf oneof case (message_posted, reaction_added, presence_changed, notification_created, …). event.payload is the concrete protobuf sub-message — access its fields directly (e.g. event.payload.room_id). Realtime events are invalidation signals; use the corresponding Connect RPC (GetRoomEventsAround, GetNotification, GetUser, …) to hydrate the referenced resource.

Escape hatch

ChattoClient.services exposes the underlying connectrpc service clients directly (one per Chatto service), for anything the Pythonic wrappers don't yet cover. For example:

from chattolib._pb.chatto.api.v1 import messages_pb2

resp = await client.services.messages.get_message(
    messages_pb2.GetMessageRequest(room_id=..., event_id=...)
)

License

  • chattolib's own code is licensed under MPL-2.0 (Mozilla Public License 2.0) — a weak, file-level copyleft. You can use, distribute, and embed chattolib in commercial or proprietary software; modifications to the library's own files must be released under MPL-2.0.
  • Vendored Chatto protobuf definitions under proto/chatto/** and the generated bindings under src/chattolib/_pb/chatto/** are Apache-2.0, matching upstream chattocorp/chatto.
  • Vendored buf.validate material is Apache-2.0 (from bufbuild/protovalidate).

See LICENSING.md for the full picture and REUSE.toml for the machine-readable licence map.

Note: chattolib versions 0.0.1 through 0.4.9 were released under MIT. Those releases remain MIT-licensed forever on PyPI; the MPL-2.0 relicence applies to newly published releases only.

Release files for chattolib 0.5.0b4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for chattolib 0.5.0b4
File Size Uploaded
chattolib-0.5.0b4.tar.gz 145.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for chattolib 0.5.0b4
File Interpreter ABI Platform
chattolib-0.5.0b4-py3-none-any.whl Python 3 none any Details

Total release size: 327.8 kB

Release files / chattolib-0.5.0b4.tar.gz

Download URL chattolib-0.5.0b4.tar.gz
Size 145.9 kB
Tags Source
SHA-256 checksum
How to use checksums
c8b677ca8ea662e07dc44499216ba06875dfc0d6169701404e300a6d5f41819e
BLAKE2b-256 checksum
How to use checksums
2a2b0c5b3fdc845b270e8a6d27396bf50944c6e2c474076cafb38c183b5f3865
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.12

Release files / chattolib-0.5.0b4-py3-none-any.whl

Download URL chattolib-0.5.0b4-py3-none-any.whl
Size 181.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
4b76415f31420bfbf080a601c95c5be60a1d455f7a387f5ad6f8d76bf4bc2cb7
BLAKE2b-256 checksum
How to use checksums
efdf0f78e9aa22b9758dac0d50675f9e8607455b0b967e908a44547a19b7490a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.12
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page