What if you could import and export subscription lists between different instances?
I'm not a programmer so I don't know how easily this could be done or how it'll work, but I had this idea while trying to manually move all my current lemmy.ml subscribed communities to my new instance.
You are viewing a single comment
I think I remember reading about an existing project which aims to allow migration of followed communities, users, blocks, etc. between instances. I'd imagine that would be far cleaner than my quick solution so it might be worth a look!
I'll try cleaning mine up though and I'll post it here just in case it's useful.
Here's my Python script, it requires Python 3 and requests: -
You use it like this (for example), assuming it's saved to
sync.py
: -python sync.py --source-url=https://lemmy.ml --dest-url=https://lemmy.world --source-jwt=abc123 --dest-jwt=bcd234
Thank you very much for this.