A Python package for accessing the LemmyHttp API
Project description
Plemmy: a Python package for accessing the Lemmy API
Plemmy allows you to interact with any Lemmy instance using Python and the LemmyHttp API.
WARNING: Plemmy is still in development and needs testing!
Installation
For the most up-to-date version of Plemmy, clone and install from the repository:
git clone https://github.com/Fedihosting-Foundation/plemmy
cd plemmy
python -m pip install .
A PyPI repository is updated whenever a new version is available:
python -m pip install plemmy
Basic usage
Interact with a Lemmy instance using the LemmyHttp object:
from plemmy import LemmyHttp
# create object for Lemmy.world, log in
srv = LemmyHttp("https://lemmy.world")
srv.login("<username_or_email>", "<password>")
Access specific communities:
from plemmy.responses import GetCommunityResponse
# obtain community, parse JSON
api_response = srv.get_community(name="Lemmy")
response = GetCommunityResponse(api_response)
# community info
community = response.community_view.community
print(community.name)
print(community.actor_id)
print(community.id)
# list community moderators
for person in response.moderators:
print(person.moderator.name, person.community.name)
Create a post:
from plemmy.responses import PostResponse
# create post, parse JSON
api_response = srv.create_post(community.id, "Test post please ignore", "Body text")
response = PostResponse(api_response)
# post info
post = response.post_view.post
print(post.creator_id)
print(post.community_id)
print(post.name)
print(post.body)
Full documentation is on its way, but in the meantime check out our source code and some examples.
Reporting issues, making contributions, etc.
Don't hesitate to report a bug or unexpected results! Want to contribute? Make a pull request. Contact @tjkessler with any questions.
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
File details
Details for the file plemmy-0.4.8.tar.gz
.
File metadata
- Download URL: plemmy-0.4.8.tar.gz
- Upload date:
- Size: 22.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0e908004fddb68f305a5ebb656aff8eb922bb4acafadfc51746ee5d75e55bb3 |
|
MD5 | 8bca07f49642c477aa333699e43a6082 |
|
BLAKE2b-256 | f15fa40db23187586d452a76503cc5dc4164cfee7a828012e23e367e3f9ca18f |
File details
Details for the file plemmy-0.4.8-py3-none-any.whl
.
File metadata
- Download URL: plemmy-0.4.8-py3-none-any.whl
- Upload date:
- Size: 23.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42c70ae786696754cf95015509fc69f2ba2173ccdd0fe8d17cfe4aaaf431631c |
|
MD5 | e50cb4e0f8c7512309790002d19b0611 |
|
BLAKE2b-256 | c67589defd9d6df66d0c7b4477ce0840a064eb6e8f1ce386cac4ccf15aaed3f9 |