Skip to main content

asyncio-based Python wrapper for the Rocket.Chat Realtime API.

Project description

rocketchat-async

asyncio-based Python wrapper for the Rocket.Chat Realtime API.

When should you use this library?

Use this library if you:

  • want to integrate with Rocket.Chat from Python
  • are using asyncio to drive your code
  • want to use Rocket.Chat's efficient websockets-based Realtime API

Installation

pip install rocketchat-async

Example usage

import asyncio
import random
from rocketchat_async import RocketChat


def handle_message(channel_id, sender_id, msg_id, thread_id, msg, qualifier,
                   unread):
    """Simply print the message that arrived."""
    print(msg)


async def main(address, username, password):
    while True:
        try:
            rc = RocketChat()
            await rc.start(address, username, password)
            # Alternatively, use rc.resume for token-based authentication:
            # await rc.resume(address, username, token)

            # A possible workflow consists of two steps:
            #
            # 1. Set up the desired callbacks...
            for channel_id, channel_type in await rc.get_channels():
                await rc.subscribe_to_channel_messages(channel_id,
                                                       handle_message)
            # 2. ...and then simply wait for the registered events.
            await rc.run_forever()
        except (RocketChat.ConnectionClosed,
                RocketChat.ConnectCallFailed) as e:
            print(f'Connection failed: {e}. Waiting a few seconds...')
            await asyncio.sleep(random.uniform(4, 8))
            print('Reconnecting...')


# Side note: Don't forget to use the wss:// scheme when TLS is used.
asyncio.run(main('ws://localhost:3000/websocket', 'username', 'password'))

API Overview

Brief overview of the currently implemented methods.

As of now, Rocket.Chat's API is only covered partially (based on my original needs). I am open to both feature requests as well as pull requests.

Methods

RocketChat.get_channels()

Get a list of channels the logged-in user is currently member of.

RocketChat.send_message(text, channel_id, thread_id=None)

Send a text message to a channel.

RocketChat.send_reaction(orig_msg_id, emoji)

Send a reaction to a specific message.

RocketChat.send_typing_event(channel_id, is_typing)

Send the "typing" event to a channel.

RocketChat.subscribe_to_channel_messages(channel_id, callback)

Subscribe to all messages in the given channel. Returns the subscription ID.

The provided callback should accept six arguments: channel_id, sender_id, msg_id, thread_id, msg_text and msg_qualifier. The qualifier can help to determine if e.g. the message is a system message about the user being removed from the channel.

RocketChat.subscribe_to_channel_changes(callback)

Subscribe to all changes in channels. Returns the subscription ID.

The provided callback should accept two arguments: channel_id and channel_qualifier. The qualifier helps to determine e.g. if it's a direct message or a normal room.

RocketChat.unsubscribe(subscription_id)

Cancel a subscription.

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

rocketchat_async-2.0.0.tar.gz (8.2 kB view details)

Uploaded Source

Built Distribution

rocketchat_async-2.0.0-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file rocketchat_async-2.0.0.tar.gz.

File metadata

  • Download URL: rocketchat_async-2.0.0.tar.gz
  • Upload date:
  • Size: 8.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.1 CPython/3.9.2 Linux/5.10.0-27-amd64

File hashes

Hashes for rocketchat_async-2.0.0.tar.gz
Algorithm Hash digest
SHA256 aa5d858c3dcaba3bca08f16d3b6d28e8a3500141ac8b55590bbf763b114734e3
MD5 8b077d936e2fd85c928b387572930c2e
BLAKE2b-256 4fdd2643ed7e1da5860c639942d06d4a2565862c897f34c44f611b9a0f7e1c13

See more details on using hashes here.

File details

Details for the file rocketchat_async-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: rocketchat_async-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.1 CPython/3.9.2 Linux/5.10.0-27-amd64

File hashes

Hashes for rocketchat_async-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 61e37e87fb658aebcc1ec61a1a4bf564d5aef10bec7b1757a5a17137ce56dfa8
MD5 9f631e14ffb74b17ee88b11829b5d0c6
BLAKE2b-256 a7def72f26464e72d633c0becd46b79bb8ccb0750c373e8d98c3a222f069c7d3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page