Hello everyone!
I’m here to share a project I’ve been working on, Plemmy. Plemmy is a Python package for accessing the Lemmy API, specifically through LemmyHttp.
Feel free to offer advice and contribute!
Edit: version 0.2.0 released, all LemmyHttp operations are supported! (Most methods still need testing)
Looking at the LemmyHttp docs, mentioned above, it looks like you probably want to use the
ListCommunities
resource with thetype_
ListingType
of"Subscribed"
.To do that with Plemmy, it looks like you want to use
LemmyHttp(...).list_communities(type_='Subscribed')
.Fair warning, I’m making this comment just from reading docs and source code, I haven’t had a chance to try this yet.