A bot for rocketchat messaging, allowing you to react to messages or commands.
Project description
Rocketbotte
A bot for rocketchat messaging, allowing you to react to messages or commands.
It works with rocketchat's realtime api (websocket) to receive messages, and responds with the REST api. To do this, it uses the aiohttp python library.
Installation
pip install rocketbotte
Usage
from rocketbotte import Bot, Context, Message
bot = Bot(server_url=SERVER_URL, user_id=USER_ID, auth_token=AUTH_TOKEN)
@bot.command('test')
async def test(ctx:Context, args:str):
await ctx.send_message(f'response to {args}')
@bot.listen()
async def on_message(message:Message):
if 'hello' in message.content:
await bot.send_message(message.room_id, 'world ')
bot.run()
Bot parameters
- server_url: the server url as
https://myrocketchat.org - auth_token: the personal authentification token for the bot
- command_prefix: default : '!'
- user_id: the user id who belongs to the authentification token
- max_retry: number of attempt restart after an uncaught exception, default to 5
logging
This library use loguru for logging. To see logs explicit ask for by using logger.enable("rocketbotte")
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rocketbotte-0.1.5.tar.gz.
File metadata
- Download URL: rocketbotte-0.1.5.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.3 Windows/11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d4d2e07f945498323e988a29aee541d36b72c0f5fd8328e3e83977706bd1c32
|
|
| MD5 |
a84ab182f78016ac086b9446727d0e7b
|
|
| BLAKE2b-256 |
a3843009a97530c812f146987e157081b55c2d9c4f7ff04e2542442e154a00b0
|
File details
Details for the file rocketbotte-0.1.5-py3-none-any.whl.
File metadata
- Download URL: rocketbotte-0.1.5-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.3 Windows/11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fcf32e71168b86e8edef8cc81d6c1de05e389eaaec46e6e857965a13a9b781a
|
|
| MD5 |
b27bb1efa85e18aeae52f38cf37454a1
|
|
| BLAKE2b-256 |
82302ee01380093348474c3e3326d7f8d49b283492df1dec15f4501ba408f65d
|