pythorhead
pythorhead copied to clipboard
A python library for interacting with Lemmy
Sometimes, I get a timeout when uploading images using Pythorhead: HTTPSConnectionPool(host='lemmy.world', port=443): Read timed out. (read timeout=3) The timeout should be higher by default when uploading an image, as servers...
Is there a way to retrieve more than 50 posts from a community? I'm playing around with a bot and trying to grab posts in a community. I can 50...
Lemmy instance version: 0.19.1 pythorhead version: 0.20.0 Using the following script, an error is thrown (replace example values with real ones): ``` from pythorhead import Lemmy lemmy = Lemmy("https://example.com") lemmy.log_in("username",...
Purging a user doesn't purge their communities. Might be good to give a method for admins who want to do that. The method should look up all user-owned communities and...
This will ensure that if `nodeinfo` couldn't be obtained during the `set_domain` operation, it can be requested by any other operation and then stored on the Requestor instance. See #102
In the presence of an auth token, the requestor selects the strategy to authenticate using nodeinfo's version, but there's a situation where the request for nodeinfo could have failed and...