Rand Stats

Matrix::Client

cpan:MATIASL

Matrix::Client

A Raku library for Matrix.

Installation

zef install Matrix::Client

Usage

use Matrix::Client;

my $client = Matrix::Client.new(
    :home-server<https://matrix.org>,
    :device-id<matrix-client>
);

$client.login(:username<myuser>, :password<s3cr3t>);

# Check my user
say $client.whoami;  # @myuser:matrix.org

# Send a message to a random room that I'm in
my $room = $client.joined-rooms.pick;
say "Sending a message to {$room.name}";
$room.send("Hello from Raku!");

Description

Matrix is an open network for secure, decentralized communication.

This module provides an interface to interact with a Matrix homeserver through the Client-Server API. It's currenlty on active development but it's mostly stable for day to day use.

Here's a not complete list of things that can be done:

There are many missing endpoints (you can check a complete checklist here). If you want to contribute with some endpoint check the CONTRIBUTING.md file.

Documentation

There's a couple of pages of documentation on the docs/ directory. This includes API documentation, basic usage, examples, etc.

Author

Matías Linares matias@deprecated.org | Matrix ID: @matias:chat.deprecated.org