Skip to content

A Python Matrix client library, designed according to sans I/O (http://sans-io.readthedocs.io/) principles

License

Unknown, Apache-2.0 licenses found

Licenses found

Unknown
LICENSE.md
Apache-2.0
apache_license.txt
Notifications You must be signed in to change notification settings

HarHarLinks/matrix-nio

This branch is 42 commits behind matrix-nio/matrix-nio:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

efa90d6 · Dec 24, 2023
Dec 24, 2023
Nov 17, 2023
Dec 24, 2023
May 30, 2022
Oct 4, 2023
Nov 15, 2023
Nov 15, 2023
Mar 26, 2023
Jan 16, 2019
Dec 24, 2023
Oct 1, 2023
Nov 17, 2023
Apr 6, 2018
Oct 10, 2018
Oct 4, 2023
Dec 24, 2023
Mar 17, 2022
Jan 16, 2019
Dec 24, 2023
Dec 24, 2023
Jun 6, 2018
Dec 24, 2023
Jun 13, 2023

Repository files navigation

nio

Build Status PyPI - Python Version codecov license Documentation Status #nio

nio is a multilayered Matrix client library. The underlying base layer doesn't do any network IO on its own, but on top of that is a full-fledged batteries-included asyncio layer using aiohttp. File IO is only done if you enable end-to-end encryption (E2EE).

Documentation

The full API documentation for nio can be found at https://matrix-nio.readthedocs.io

Features

nio has most of the features you'd expect in a Matrix library, but it's still a work in progress.

  • ✅ transparent end-to-end encryption (EE2E)
  • ✅ encrypted file uploads & downloads
  • ✅ space parents/children
  • ✅ manual and emoji verification
  • ✅ custom authentication types
  • ✅ well-integrated type system
  • ✅ knocking, kick, ban and unban
  • ✅ typing notifications
  • ✅ message redaction
  • ✅ token based login
  • ✅ user registration
  • ✅ read receipts
  • ✅ live syncing
  • m.reactions
  • m.tags
  • ❌ cross-signing support
  • ❌ server-side key backups (room key backup, "Secure Backup")
  • ❌ user deactivation (#112)
  • ❌ threading support
  • ❌ in-room emoji verification

Installation

To install nio, simply use pip:

$ pip install matrix-nio

Note that this installs nio without end-to-end encryption support. For e2ee support, python-olm is needed which requires the libolm C library (version 3.x). On Debian and Ubuntu one can use apt-get to install package libolm-dev. On Fedora one can use dnf to install package libolm-devel. On MacOS one can use brew to install package libolm. Make sure version 3 is installed.

After libolm has been installed, the e2ee enabled version of nio can be installed using pip:

$ pip install matrix-nio[e2e]

Additionally, a docker image with the e2ee enabled version of nio is provided in the docker/ directory.

Examples

For examples of how to use nio, and how others are using it, read the docs

About

A Python Matrix client library, designed according to sans I/O (http://sans-io.readthedocs.io/) principles

Resources

License

Unknown, Apache-2.0 licenses found

Licenses found

Unknown
LICENSE.md
Apache-2.0
apache_license.txt

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.7%
  • Other 0.3%