After seeing the work someone else did with migrating your subscriptions across accounts. I took their code and expanded upon it to fully synchronize your Lemmy instance accounts.

Feel free to give it a try. It’s been useful for me to have accounts in multiple instances with the instability problems right now from the big influx of users.

Let me know what you think. Hopefully it can help a few people.

  • gkd@lemmy.ml
    link
    fedilink
    English
    arrow-up
    8
    ·
    1 year ago

    Hey if you’re interested in offering this as a web app of sorts reach out to me. I’m glad to provide hosting if you want. I’d also be interested in integrating with the app we are working on Memmy.

  • Zackyist
    link
    fedilink
    English
    arrow-up
    7
    ·
    1 year ago

    If only I had found this yesterday when I did everything by hand. Great to see this nevertheless!

    • rubikcuber@programming.dev
      cake
      link
      fedilink
      English
      arrow-up
      4
      ·
      1 year ago

      Came here to say this! But still - thank you! I have a feeling it will be invaluable, at least in the short term.

  • yoichi@lemm.ee
    link
    fedilink
    English
    arrow-up
    6
    ·
    edit-2
    1 year ago

    Worked perfectly. Thanks for making this, I really appreciate it. I was suprised that it was able to accept my password which included dollar signs. I assumed I should enclose it in double quotes, but I didn’t need to

  • Gamera8ID@lemm.ee
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 year ago

    I’m getting a TypeError: unsupported operand type(s) for |: 'type' and 'NoneType' when I do:

    git clone https://github.com/Ac5000/lemmy_account_sync.git
    cd lemmy_account_sync/
    pip install -r requirements.txt
    cp exampleconfig.ini src/myconfig.ini
    nano src/myconfig.ini
    python3 src/lemmy_sync.py
    

    I’ve confirmed that my [Main Account] and [Account 2] details are correct in myconfig.ini, but beyond that I don’t really know what I’m doing.

    • nanders@mander.xyz
      link
      fedilink
      English
      arrow-up
      4
      ·
      1 year ago

      undefined> TypeError: unsupported operand type(s) for |

      the | syntax to indicate multiple types was introduced in Python 3.10. It looks like you are using a an older Python version.

      • Gamera8ID@lemm.ee
        link
        fedilink
        English
        arrow-up
        4
        ·
        edit-2
        1 year ago

        That was it exactly. Thank you.

        This was a journey, so I’m documenting it here for anyone who might run into a similar situation.

        I’m using a Chromebook with Linux enabled.

        To confirm my version of Python I ran python --version:

        Python 3.9.2

        OK! Getting somewhere. So I have to check what distribution of Linux is installed with grep '^PRETTY_NAME' /etc/os-release

        PRETTY_NAME=“Debian GNU/Linux 11 (bullseye)”

        Alright. Google says if I want to upgrade Python on Debian 11 I have to compile it from source. Yikes! But, wait, there’s a PPA - Yay! But the PPA is for Ubuntu - Boo.

        There isn’t an active community for ChromeOS on Lemmy yet, but that other website has directions for replacing Debian with Ubuntu.

        I’m lazy so I’m not doing that. I’m just going to spin up a temporary Ubuntu container that I can delete later, so my directions are much simpler:

        Ctr-Alt-T to enter crosh, the ChromeOS developer shell.

        vmc start termina
        lxc launch ubuntu:22.04 ubuntu
        lxc exec ubuntu -- bash
        apt update && apt -y upgrade
        add-apt-repository ppa:deadsnakes/ppa
        apt update
        apt install -y python3.11 python3.11-venv
        python3.11 -m ensurepip
        git clone https://github.com/Ac5000/lemmy_account_sync.git
        cd lemmy_account_sync/
        pip3.11 install -r requirements.txt
        cp exampleconfig.ini src/myconfig.ini
        nano src/myconfig.ini
        python3.11 src/lemmy_sync.py
        

        Success! I had to escape some special characters in my passwords, but that’s easily Google-able.

        I’ll be keeping the container around for a little while to do some periodic syncs. Then I’ll remove it using crosh.

        vmc start termina
        lxc delete ubuntu --force
        
  • MuskyRat@lemm.ee
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 year ago

    Just curious, will this script work if you have 2FA enabled on your Lemmy accounts?

    • Ac5000@lemm.ee
      link
      fedilink
      English
      arrow-up
      3
      ·
      1 year ago

      Sorry for the delay in getting back.

      Currently it will not work with 2FA enabled. However, looking at the login post requirements I just need to add that as an option to put in the config.

      I’ll reply to this comment again when I get something put together. I’ll add it to the GitHub issues list for tracking as well.

      However, could you recommend an instance that uses 2FA for login so I can make an account to test it? I see the field in my current instances but would like something fresh to try it on.

    • Hexarei@programming.dev
      link
      fedilink
      English
      arrow-up
      8
      ·
      edit-2
      1 year ago

      There’s not currently a way to copy your subscriptions across from one instance to another, so if you want to instance hop, you have to go resubscribe to all your communities manually.

      Also if you have redundant accounts for when an instance is having trouble (I had errors reaching programming.dev just last night), it seems like you can run this periodically and keep them in sync with each other

      • Ac5000@lemm.ee
        link
        fedilink
        English
        arrow-up
        2
        ·
        1 year ago

        Correct. lemmy.world was my original account. But with the server strain going on, I’ve hopped over to lemm.ee and also have a couple other accounts. Just run this script every so often and all your accounts will more or less feel like the same account.

  • Nullify9964@lemmy.ml
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    1 year ago

    Thanks for this! I haven’t been able to get it to work yet but it seems to be because the instances I use are dealing with issues.

    Edit: Finally managed to get the script to complete. My advice for anyone trying this is if you run into a 502 error it’s most likely that the instance is getting hammered and that you should try again later

    • Ac5000@lemm.ee
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      1 year ago

      Yeah, for anyone that gets the 502 gateway error. That means the instance was down when it tried to login/didn’t respond. I’m going to revisit this part of the code later and see if I can fix/handle that happening so it at least goes through with the rest of the accounts. If it happens to you, just run it again and hopefully you’ll get through at least once.

      Subsequent runs actually hit the servers with less requests since you can pull most of the info you need with the initial site response and I check that before making any needed requests.

      Also, someone else mentioned they had a problem with the none type thing. I’m using Python 3.11 and forgot to specify that. I’ll add it to the readme when I get a chance.