Python client library for ActivityPub-compatible servers
Project description
longwei
Longwei is a minimal Python implementation of the ActivityPub client REST API used by Mastodon, Pleroma, and GotoSocial. This implementation makes use of asyncio where appropriate. It is intended to be used as a library by other applications. No standalone functionality is provided.
So far Longwei only implements the ActivityPub API calls I need for my other projects Fedinesia, Feed2Fedi, FenLiu and Zhongli.
DO NOT expect a full or complete implementation of all ActivityPub API functionality.
Quick start
pip install longwei
import asyncio
import httpx
from longwei import APClient
async def main():
async with httpx.AsyncClient() as client:
ap = await APClient.create(
instance="mastodon.social",
client=client,
access_token="your_token",
)
status = await ap.post_status("Hello, fediverse!")
print(status.url)
asyncio.run(main())
API References
Status
longwei is a fork of minimal_activitypub. The main breaking change from that package is the
class rename: ActivityPub → APClient. See the Upgrading guide for migration instructions.
It is not a drop-in replacement. See the upgrading guide for migration instructions.
Contributing
Issues and pull requests are welcome.
longwei is using pre-commit for code quality checks and uv for dependency management. Please install and use both pre-commit and uv if you'd like to contribute.
Documentation
The live documentation is at https://marvinsmastodontools.codeberg.page/longwei/latest/
Built with MkDocs and the Material theme. To build and serve locally:
uv sync --group docs
mkdocs serve
Development
This project uses uv for dependency management and virtual environments. To set up the development environment:
# Create and activate virtual environment
uv venv
source .venv/bin/activate
# Install all dependencies including development and documentation groups
uv sync --all-groups
# Run tests
uv run nox
For more details on the development workflow, check the noxfile.py and .woodpecker/ configuration files.
Licensing
longwei is licenced with the GNU Affero General Public License v3.0
Supporting longwei
There are a number of ways you can support longwei:
- Create an issue with problems or ideas you have with/for longwei
- You can buy me a coffee.
- You can send me small change in Monero to the address below:
Monero donation address
8ADQkCya3orL178dADn4bnKuF1JuVGEG97HPRgmXgmZ2cZFSkWU9M2v7BssEGeTRNN2V5p6bSyHa83nrdu1XffDX3cnjKVu
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file longwei-1.1.1.tar.gz.
File metadata
- Download URL: longwei-1.1.1.tar.gz
- Upload date:
- Size: 19.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1c64873fb82bd5ee232676343bc7de89be86d4716a6af46cd27b6969f1c620d
|
|
| MD5 |
64714b1b8988b9bd0b7e8151d3f91666
|
|
| BLAKE2b-256 |
c411f66753ce5da2756f47bc9c9c2b91e3309c362f6c98dee89f12ad7931ab11
|
File details
Details for the file longwei-1.1.1-py3-none-any.whl.
File metadata
- Download URL: longwei-1.1.1-py3-none-any.whl
- Upload date:
- Size: 25.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c18341ca1b6635dab755aff1c5cee9b05969080922b5b66087e88848ff0a2b2
|
|
| MD5 |
d007d0780f69a1d236581aea7c873b3c
|
|
| BLAKE2b-256 |
39a32d527bdd6810dad702a82bf67c943976e01aa67e856028324cab96569141
|