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, repeated):
"""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 eight arguments: channel_id
,
sender_id
, msg_id
, thread_id
, msg_text
, msg_qualifier
and repeated
. The qualifier can help to determine if e.g. the
message is a system message about the user being removed from
the channel. The repeated
flag assists in distinguishing
whether the message has been received again as a result of
thread replies, or if it is a new message post.
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file rocketchat_async-3.0.0.tar.gz
.
File metadata
- Download URL: rocketchat_async-3.0.0.tar.gz
- Upload date:
- Size: 8.4 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2d44f8e4a536e2902e289c70dc26b222b04e08c02e3181557a63e62f41ae7cb |
|
MD5 | fd0697f8ab445612c871c8d0c283491b |
|
BLAKE2b-256 | f9895127532095dbe79d2c66f696dea8bac9d6c2312c1a58f71beab8558797bf |
File details
Details for the file rocketchat_async-3.0.0-py3-none-any.whl
.
File metadata
- Download URL: rocketchat_async-3.0.0-py3-none-any.whl
- Upload date:
- Size: 8.6 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2f044fd287dfbbac35ed1d551a6cd989a102e15b6dafad661fd699c02257f0d |
|
MD5 | 001297556047313b367d5f630a803fdb |
|
BLAKE2b-256 | 52fc97419ebf48d18c204850fefb6bf4ac0f24c3324a68e643b9d77431787428 |