Skip to main content

Halcyon is an easy to use matrix library

Project description

Halcyon

Halcyon is a Matrix bot library with the goal of being easy to install and use. The library takes inspiration from discord.py and the Slack libraries. Encryption is on the roadmap, and with the goal of being transparent to the user. Check the roadmap in notes.md, and see information of the token format in tokenFormat.md

Ask questions in the matrix chat #halcyon:blackline.xyz or in GitHub issues.

Current features

  • A nice CLI tool to generate Halcyon tokens
  • Login with token or username/password
  • Async long polling with a structured sync event pipeline
  • Typed event hooks for common events, plus a generic on_event fallback for everything else
  • Event hooks
    • on_ready() — bot is online and ready
    • on_message(message) — message-like timeline content (m.room.message and m.sticker)
    • on_message_edit(message) — edited room message
    • on_reaction(event)m.reaction events
    • on_redaction(event)m.room.redaction events
    • on_room_member(event) — membership changes (join, leave, ban, invite, knock)
    • on_room_invite(room) — invited to a room
    • on_room_leave(roomID) — left or kicked from a room
    • on_event(event) — fires for every Matrix event object present in /sync
  • Action hooks
    • send_message(roomID, body, textFormat, replyTo, isNotice)
    • send_typing(roomID, seconds)
    • change_presence(presence, statusMessage)
    • join_room(roomID)
    • download_media(mxc)
    • upload_media(fileBuffer, fileName)
    • send_image(roomID, fileBuffer, fileName, generate_blurhash, generate_thumbnail)
    • get_user_presence(userID=None) — returns PresenceEvent
    • get_user_profile(userID) — returns User
  • Live room cache updated from sync state events
  • Typed event models: Event, MemberEvent, ReactionEvent, RedactionEvent, StickerEvent, TypingEvent, ReceiptEvent, PresenceEvent, AccountDataEvent
  • User model with sender enrichment on events (event.sender_user)
  • Room and message objects for incoming events
  • message helpers for bot authors: message.author, message.text, message.sticker, message.attachments
  • Documentation in usage.md

Getting started

  1. Create a matrix account for the bot
  2. Install Halcyon using python3 -m pip install halcyon or download it from the Releases tab in Github
  3. Generate a token using python3 -m halcyon -s homeserver.xyz -u @user:homeserver.xyz -p yourP@$$w0rd
  4. Start with the demo code below

Example bot code

See more example and message object info in usage.md

import halcyon
import aiohttp, json

client = halcyon.Client()

@client.event
async def on_room_invite(room):
    """On room invite, autojoin and say hello"""
    print("Someone invited us to join " + room.name)
    await client.join_room(room.id)
    await client.send_message(room.id, body="Hello humans")


@client.event
async def on_message(message):
    """If we see a message with the phrase 'give me random', do a reply message with 32 random characters"""
    print(message.id)
    if message.sticker:
        await client.send_message(message.room.id, body="I saw a sticker!")
        return

    if "give me random" in message.text:
        await client.send_typing(message.room.id) # This typing notification will let the user know we've seen their message
        # Use async HTTP client for external requests (non-blocking)
        async with aiohttp.ClientSession() as session:
            async with session.get("https://random.wesring.com") as resp:
                data = json.loads(await resp.text())
                body = f"This looks random: {data['value']}"
        await client.send_message(message.room.id, body=body, replyTo=message.id)


@client.event
async def on_ready():
    print("Online!")
    await client.change_presence(statusMessage="indexing /dev/urandom")

if __name__ == '__main__':
    client.run(halcyonToken="eyJ0eXAiO...")

CLI usage

halcyon can be called from the CLI to do some management of the account.
See the help message with python3 -m halcyon -h Right now it can be used to

  1. generate a new token
  2. decode an existing token
  3. revoke a single token
  4. revoke all tokens
usage: halcyon [-h] [-s SERVER] [-u USERNAME] [-p PASSWORD] [--include-password] [--decode DECODE] [--pretty] [--revoke REVOKE] [--revoke-all-tokens REVOKE_ALL_TOKENS]

By this, you can generate a halcyonToken for your project, for example python3 -m halcyon -s matrix.org -u @kevin:matrix.org -p on&on&on1337

optional arguments:
  -h, --help            show this help message and exit
  -s SERVER, --server SERVER
                        Homeserver the user belongs to ex: matrix.org
  -u USERNAME, --username USERNAME
                        Your full username ex: @kevin:matrix.org
  -p PASSWORD, --password PASSWORD
                        Your full password for your matrix account
  --include-password    Save your username and password in the token for reauth (Not required right now since matrix tokens do not expire)
  --decode DECODE       Decode an existing token that you pass in
  --pretty              Pretty print the decoded token
  --revoke REVOKE       Revoke an existing token
  --revoke-all-tokens REVOKE_ALL_TOKENS
                        Revoke an all existing token for the account

Have fun creating

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

halcyon-1.4.0.tar.gz (46.4 kB view details)

Uploaded Source

Built Distribution

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

halcyon-1.4.0-py3-none-any.whl (29.5 kB view details)

Uploaded Python 3

File details

Details for the file halcyon-1.4.0.tar.gz.

File metadata

  • Download URL: halcyon-1.4.0.tar.gz
  • Upload date:
  • Size: 46.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for halcyon-1.4.0.tar.gz
Algorithm Hash digest
SHA256 1ccedc60ace35c1fe26c03cf13005b1199c97a58580d8a7750278378978b91cb
MD5 a159503edf2e5d5c2a6fea90a08b0108
BLAKE2b-256 91f0f9926ba576ca741986c5cbd72f741847c7b8ec0d277460dc4495c518d460

See more details on using hashes here.

File details

Details for the file halcyon-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: halcyon-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 29.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for halcyon-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 83c1851d626891edfcb5cec16e91c756c57f1fe2ff7115ca44bc81b32c7f20bb
MD5 f8f2221663c1a5415a44310ad072f2b2
BLAKE2b-256 81d2183f7efe93752efb4a5d2f40e878f457177001753bfb360d7a1156f10ce0

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