/pythorhead

A python library for interacting with Lemmy

Primary LanguagePythonGNU Affero General Public License v3.0AGPL-3.0

Pythörhead

A python library for interacting with Lemmy

pythorhead logo

Sample Usage

from pythorhead import Lemmy

lemmy = Lemmy("https://lemmy.dbzer0.com")
lemmy.log_in("username", "password")
community_id = lemmy.discover_community("botart")
lemmy.post.create(community_id, "Hello Lemmy World")