An easy to use bot library for the Matrix ecosystem written in Python.
Project description
Simple-Matrix-Bot-Lib
(Version 2.10.2)
Simple-Matrix-Bot-Lib is a Python bot library for the Matrix ecosystem built on matrix-nio.
View on Github or View on PyPi or View docs on readthedocs.io
Learn how you can contribute here.
Features
- hands-off approach: get started with just 10 lines of code (see example)
- end-to-end encryption support
- limited verification support (device only)
- easily extensible config file
- user access management
- access the matrix-nio library to use advanced features
Installation
simplematrixbotlib can be either installed from PyPi or downloaded from github.
Installation from PyPi:
python -m pip install simplematrixbotlib
Read the docs to learn how to install E2E encryption support.
Download from github:
git clone --branch master https://github.com/i10b/simplematrixbotlib.git
Example Usage
# echo.py
# Example:
# randomuser - "!echo example string"
# echo_bot - "example string"
import simplematrixbotlib as botlib
creds = botlib.Creds("https://home.server", "echo_bot", "pass")
bot = botlib.Bot(creds)
PREFIX = '!'
@bot.listener.on_message_event
async def echo(room, message):
match = botlib.MessageMatch(room, message, bot, PREFIX)
if match.is_not_from_this_bot() and match.prefix() and match.command("echo"):
await bot.api.send_text_message(
room.room_id, " ".join(arg for arg in match.args())
)
bot.run()
More information and examples can be found here.
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
simplematrixbotlib-2.10.2.tar.gz
(14.6 kB
view hashes)
Built Distribution
Close
Hashes for simplematrixbotlib-2.10.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ac9a62e3554af82fc64981a7788fe812c2795d6782cf331d243129c4c4ea684 |
|
MD5 | 5d132d5ce58637a4f951889ce1b44e42 |
|
BLAKE2b-256 | 4370efca7115d35c3411cadb3ab039322bb6aaeefec5de29ac26402e780f5482 |
Close
Hashes for simplematrixbotlib-2.10.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31f7776a0ccec7a1f8d6a267eec7d061e0cb05fe02b4b24fef1ff2a0b78814fe |
|
MD5 | e26686e6f7ec4274a27ab6801466d0eb |
|
BLAKE2b-256 | 87f159b955fcd60f347016b902c33af072a5b9417344bcb75fb258ce629c5afe |