{"id":20466057,"url":"https://github.com/rizerphe/matrix-client","last_synced_at":"2026-05-31T22:31:03.271Z","repository":{"id":230622309,"uuid":"779822783","full_name":"rizerphe/matrix-client","owner":"rizerphe","description":"A very basic matrix API wrapper","archived":false,"fork":false,"pushed_at":"2024-04-01T08:58:24.000Z","size":20,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-05T12:34:08.625Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rizerphe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-30T21:55:00.000Z","updated_at":"2024-03-31T08:19:26.000Z","dependencies_parsed_at":"2024-03-30T22:32:16.024Z","dependency_job_id":"734e93e5-5e30-4e6f-819f-f0faa8274885","html_url":"https://github.com/rizerphe/matrix-client","commit_stats":null,"previous_names":["rizerphe/matrix-client"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rizerphe/matrix-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rizerphe%2Fmatrix-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rizerphe%2Fmatrix-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rizerphe%2Fmatrix-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rizerphe%2Fmatrix-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rizerphe","download_url":"https://codeload.github.com/rizerphe/matrix-client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rizerphe%2Fmatrix-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33752286,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-15T13:21:20.190Z","updated_at":"2026-05-31T22:31:03.248Z","avatar_url":"https://github.com/rizerphe.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Matrix-client\n\nA simple matrix API wrapper for python. I don't know why I didn't just use/wrap matrix-nio or something, but oh well, now I made this. I mean, I guess it supports message edits way better than nio and anything nio based? Cause they're a separate event type here, and with nio you gotta do a bit of magic fuckery to distinguish between messages and message edits? So that's kinda cool?\n\n## Installing\n\nBecause `matrix-client` is already taken on pypi, because I lack creativity and because I don't think this project is large enough to publish there as of yet, you can only install it directly from github:\n\n```python\npip install git+https://github.com/rizerphe/matrix-client.git\n```\n\n## Usage\n\n```python\nimport os\n\nfrom dotenv import load_dotenv\n\nfrom matrix_client import Client, MessageEvent\n\n\nclient = Client(\"https://matrix.org\")\n\n\n@client.on.message\nasync def on_message(message: MessageEvent) -\u003e None:\n    print(message)\n\n\nif __name__ == \"__main__\":\n    load_dotenv()\n    client.run(\n        os.getenv(\"MATRIX_USERNAME\", \"\"),\n        os.getenv(\"MATRIX_PASSWORD\", \"\"),\n    )\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frizerphe%2Fmatrix-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frizerphe%2Fmatrix-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frizerphe%2Fmatrix-client/lists"}