1
0
Fork
You've already forked simplematrixbotlib
0
An easy to use bot library for the Matrix ecosystem written in Python. https://matrix.to/#/#simplematrixbotlib:matrix.org
  • Python 97.9%
  • Makefile 2.1%
Find a file
2023年10月19日 12:38:23 +00:00
.github ci: 👷 Remove manual pip install pytest-github-actions-annotate-failures from pytest workflow 2021年12月31日 13:46:13 -06:00
doc Issue #48 * Bump project version to 2.10.1 2023年09月17日 21:40:53 -05:00
examples 📝 add echo_e2ee.py example 2022年08月20日 19:43:14 +02:00
simplematrixbotlib Issue #48 * Use fenced_code markdown extension 2023年09月17日 21:38:51 -05:00
tests Make the matrix client timeout configurable 2023年08月01日 00:34:39 +02:00
.gitignore Track poetry.lock in repository 2023年05月30日 12:48:41 -05:00
CHANGELOG.md Issue #48 * Update CHANGELOG.md 2023年09月17日 21:47:09 -05:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md ( #46 ) 2021年07月24日 10:16:23 -05:00
CONTRIBUTING.md chore: 🧑‍💻 Change contributing.md to suggest Github Flow instead of variation. 2021年12月24日 08:45:31 -06:00
LICENSE Update license copyright 2022年08月20日 14:13:09 -05:00
Makefile Remove accidentally added "args" ( #63 ) 2021年09月06日 15:12:43 -05:00
poetry.lock Issue #48 * Bump project version to 2.10.1 2023年09月17日 21:40:53 -05:00
pyproject.toml Bump pillow to fix CVE 2023年10月19日 12:38:23 +00:00
README.md Issue #48 * Bump project version to 2.10.1 2023年09月17日 21:40:53 -05:00
SECURITY.md Create SECURITY.md 2021年11月25日 10:31:23 -06:00
setup.py Add poetry support to project ( #59 ) 2021年09月06日 12:16:03 -05:00

Simple-Matrix-Bot-Lib

(Version 2.10.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.

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.