olivier

joined 2 years ago
[–] olivier@lemmy.fait.ch 8 points 1 week ago

Seeing RocketChat in here, when they've been actively moving away from opensource for several years now, is at least a bit funny.

[–] olivier@lemmy.fait.ch 2 points 1 week ago

It seems recent versions of Lemmy don't have that problem anymore, right?

[–] olivier@lemmy.fait.ch 3 points 1 week ago

If we're going that far from Minecraft, don't forget the impressive Veloren ;)

[–] olivier@lemmy.fait.ch 1 points 2 years ago* (last edited 2 years ago)

Well, I've finally found a way using plemmy instead of Lemmy.py. Basically :

from plemmy import LemmyHttp

lemmy = LemmyHttp('https://my.lemmy.instance/')

lemmy.login('username','password')

lemmy.edit_community(community_id=XXX,banner="http:/yyy.tld/img.jpg")

 

I'm trying to setup a community without pict-rs (and as such, without being able to host its pictures myself). I've been tinkering a bit with the API (through python clients, essentially), and I've found how to change my users's avatar to an URL, but not a community. On Lemmy.py, for instance, I have an update() method a community object, but it can't seem to modify anything...

Has anyone an idea? Thx