Skip to main content

Python Synapse (Matrix) server Admin API module.

Project description

PySynapse

Pylint CodeQL CodeFactor

Python Synapse (Matrix) server admin API module.

NOTE: This is my first time writing a Python module, its probably not perfect.

Requirements

  • Python3 (written on 3.11)
  • requests
  • validators

Usage Examples

Create a connection from a config file

from configparser import ConfigParser
from os.path import abspath, dirname, join

try:
    from pysynapse import Homeserver
except ImportError:
    print("pysynapse not installed, install with:")
    print("python3 -m pip install pysynapse")
    exit(1)

config = ConfigParser()
config_file = join(dirname(abspath(__file__)), "config.ini")
if len(config.read(config_file)) != 1:
    print("Failed to load config.ini")
    exit(1)

homeserver = Homeserver(
    config.get("homeserver", "access_token"),
    config.get("homeserver", "host", fallback="localhost"),
    config.getint("homeserver", "port", fallback=8008),
    config.getboolean("homeserver", "secure", fallback=False),
    config.getboolean("homeserver", "verify", fallback=None),
    config.get("homeserver", "notices_user", fallback=None),
)

print(f"Connected to {homeserver.base_url} (Synapse {homeserver.server_version})")

Print summary of event reports

print(
    "| ID   | Reported            | Claimant                       | Defendant                      | Room                           |"
)
print(
    "|------|---------------------|--------------------------------|--------------------------------|--------------------------------|"
)

for event_report in homeserver.event_reports:
    print(
        "| {:4.4} | {:19.19} | {:30.30} | {:30.30} | {:30.30} |".format(
            str(event_report.id),
            str(event_report.received),
            str(event_report.user),
            str(event_report.sender),
            str(event_report.room),
        )
    )

Purge forgotten rooms

for room in homeserver.rooms:
    if room.forgotten:
        print("Deleting forgotten room: {}".format(room))
        room.delete(block_rejoining=False)
    else:
        print("Keeping room: {}".format(room))
        for member in room.members:
            print("- {}".format(member))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pysynapse-0.0.3.tar.gz (54.3 kB view details)

Uploaded Source

Built Distribution

pysynapse-0.0.3-py3-none-any.whl (43.2 kB view details)

Uploaded Python 3

File details

Details for the file pysynapse-0.0.3.tar.gz.

File metadata

  • Download URL: pysynapse-0.0.3.tar.gz
  • Upload date:
  • Size: 54.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pysynapse-0.0.3.tar.gz
Algorithm Hash digest
SHA256 9d7c7b59560812ce6d8111a73de7231ae39e873bc59348caa76f9d79165e3b38
MD5 69dfdbca873cb511695a58085096829f
BLAKE2b-256 2defe5b486df3585f9ca74132040c99a0bb1a220c7b74b58b0ca9edd42d02e30

See more details on using hashes here.

File details

Details for the file pysynapse-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: pysynapse-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 43.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pysynapse-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 1b201b2fac6669c5c60c8335e74bd542cd222b499265336f000b67896955e9f5
MD5 d945e206f9b3401e2a182b740e55fca9
BLAKE2b-256 c32876c46d87ca069a12da104c7203d11c1cb8b242357a584f11e4b3799d1d12

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page