As the title suggests, various functions/classes have been implemented to help users parse Lemmy API responses (`requests.Response` objects) into easily-usable Python objects. These functions/classes were designed based on how the [lemmy-js-client](https://join-lemmy.org/api/modules.html) handles responses and data types (person, comment, community, etc.).
For example:
python
from plemmy import LemmyHttp
from plemmy.responses import GetCommunityResponse
create object for `Lemmy.ml`, log in
srv = LemmyHttp("https://lemmy.ml")
srv.login("<username_or_email>", "<password>")
obtain community, parse response
api_response = srv.get_community(name="Lemmy") returns `requests.Response` object
response = GetCommunityResponse(api_response)
print community info
community = response.community_view.community
print(community.name)
print(community.actor_id)
print(community.id)
Full documentation is on its way, in the meantime browse our source code and [examples](https://github.com/tjkessler/plemmy/tree/main/examples)!