ap is a command-line client for the ActivityPub API.
I initially developed this program to illustrate how to write client code for the ActivityPub API as part of my book for O'Reilly Media, "ActivityPub: Programming for the Social Web".
Note that not all servers that implement the ActivityPub federation protocol necessarily implement the ActivityPub API. In particular, as of this writing, Mastodon does not implement the ActivityPub API; it has its own API. If you're using Mastodon, you may prefer the toot CLI instead.
A good list of supporting software is here:
https://codeberg.org/fediverse/delightful-fediverse-experience/issues/130
The easiest way to install is from PyPI.
pipx install activitypub-cliap uses the subcommand pattern common with other large command-line programs like git and docker. The full list of subcommands is available by typing ap --help. Familiarity with the ActivityPub API is helpful for understanding these commands!
Logs in as a user to an ActivityPub API server using OAuth 2.0. The <id> argument is a Webfinger ID like username@domain.example or the ActivityPub Actor ID (usually an HTTPS URL).
Example with a Webfinger ID:
ap login username@domain.exampleExample with an ActivityPub actor ID:
ap login https://social.example/person/df816567-4c64-480c-955a-0f734bf93362ap login stores the OAuth 2.0 token(s) in a file in the user's home directory, $HOME/.ap/token.json, so that subsequent commands can use them.
If this command fails, it's likely that your server doesn't support the ActivityPub API.
Logs out of the current session by deleting the token file.
Shows the currently logged-in user.
Gets the object with the given ID and prints it to stdout.
Shows these collections for the currently logged-in user.
Follows the user with the given ID.
Accepts or rejects a follow request from the user with the given ID.
Unfollows the user with the given ID.
Creates a Note object with the given text.
Uploads the given file and prints the resulting URL.
- @evanp (Evan Prodromou; @evan@cosocial.ca on Mastodon)
The project uses uv. To get set up, clone from Git and set up a virtual environment:
git clone https://github.com/evanp/ap.git
cd ap
uv venv
source .venv/bin/activate
uv pip install -e .Then you can run the application directly:
ap -hI'm very interested in contributions to this project. Some quick notes:
- Please open an issue before starting work on a new feature. This will help us coordinate and make sure that the feature is a good fit for the project.
- Ideally, commands should map closely to the ActivityPub API. If you're not sure how to do that, please open an issue and we can discuss it.
- Please make sure that your code passes the existing tests, and add new tests as appropriate.
- Please make your code format correctly with Python Black.
Small note: If editing the Readme, please conform to the standard-readme specification.