An easy to use bot library for the Matrix ecosystem written in Python.
Project description
Simple-Matrix-Bot-Lib
(Version 2.5.1)
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.
Installation
simplematrixbotlib can be either installed from PyPi or downloaded from github.
Installation from PyPi:
python -m pip install simplematrixbotlib
Download from github:
git clone --branch master https://github.com/KrazyKirby99999/simple-matrix-bot-lib.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
Built Distribution
Close
Hashes for simplematrixbotlib-2.5.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | db60e8ab7cd3b1a3816da53fb0c0bc486ac24b35421ee79e688ef895ca029dfa |
|
MD5 | ff267711467c3e83053d8f269e850834 |
|
BLAKE2b-256 | 4ac1c56e3ee989098e636031a788f34272b15409cae368115a7b6c8ebe66f8ee |