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).

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
    async with await ChattoClient.login("username", "password") as client:
        me = await client.me()
        print(f"Logged in as {me.display_name}")

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

asyncio.run(main())

Realtime

Install with the extra:

pip install 'chattolib[realtime]'

Then stream live events:

from chattolib import stream_events

async with await ChattoClient.login("username", "password") 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.

Download files

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

Source Distribution

chattolib-0.5.0a3.tar.gz (157.3 kB view details)

Uploaded Source

Built Distribution

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

chattolib-0.5.0a3-py3-none-any.whl (193.1 kB view details)

Uploaded Python 3

File details

Details for the file chattolib-0.5.0a3.tar.gz.

File metadata

  • Download URL: chattolib-0.5.0a3.tar.gz
  • Upload date:
  • Size: 157.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.7

File hashes

Hashes for chattolib-0.5.0a3.tar.gz
Algorithm Hash digest
SHA256 0df6b9055f82c639782de7f57d320a12e4e2b29bf4958b4bc67b7b6b8853d494
MD5 80e8c9e1ce860877b3013f0e6a42251a
BLAKE2b-256 665db1c3043655829bff319a9d25931f56f0c23470f4e281d13e5d7253f1bbf0

See more details on using hashes here.

File details

Details for the file chattolib-0.5.0a3-py3-none-any.whl.

File metadata

  • Download URL: chattolib-0.5.0a3-py3-none-any.whl
  • Upload date:
  • Size: 193.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.7

File hashes

Hashes for chattolib-0.5.0a3-py3-none-any.whl
Algorithm Hash digest
SHA256 f89501136c06b2cc4b242d0a3e86f6f1de69637175c09e8e762ddf68cec3803a
MD5 bb96df7b68519e2a166dcdb74212c4d1
BLAKE2b-256 a6399bc4bca59806a6ded29c08e0d421c2852d8a5fead01c15d56fd6e137bc0b

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.5.0a3 This release

2 files

0.4.20.post1

2 files

0.4.20

2 files

0.4.19.post3

2 files

0.4.19.post2

2 files

0.4.19.post1

2 files

0.4.19

2 files

0.4.11

2 files

0.4.10

2 files

0.4.9.post1

2 files

0.4.9

2 files

0.4.3

2 files

0.4.2.post2

2 files

0.4.2.post1

2 files

0.4.2

2 files

0.3.4

2 files

0.1.0b3

2 files

0.0.1

1 file

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