this post was submitted on 10 Jun 2025
20 points (100.0% liked)
New to Lemmy
785 readers
1 users here now
Did you just join Lemmy? This community is for you!
Do you want to help new users around? Then this community is for also you!
Thank you all for being here, it makes a big difference
FAQ
- You don't have to post here, but it's fun!
- You don't have to post right away, come back later if you want
- You can post as many times as you want
I don't know what to post
- Share what you're looking for, or what you want to do. We'll help you find it
- Ask questions! The Fediverse is new to most people. If you're unsure about something, others are unsure as well.
- Just smile and wave, maybe someone will wave back ๐
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
You probably will not have access to this.
Only if you are an Admin. https://join-lemmy.org/docs/index.html
The data seems to be stored in a postgres database, and could technically be queried.
It depends on your need, if it is for legal purpose, it depends on your jurisdiction. Maybe web archive is enough for this case, https://archive.org/.
Otherwise, you can use the API as others mentioned. Or you can use Selenium/Scrapy/BeautifulSoup to scrape the website.
If you would rather not program something with code, look into browser add-ons that scrape websites, they are mostly visual, and you click on the things you want to save or navigate into. I am not familiar with them to recommend you something, but there are plenty of videos on how to use them.
That said, depending on the security of your instance, your ip/account might get flagged.
Talk with the Admins of your instance first and express your intentions, maybe they can help with what you need.
I'd rather not bother my admins (they're already burnt-out), and with what you just said, maybe I'm better off doing it manually--if I would do it afterall. TBH, I'm scared off by the impression that saving my own posts and comments is somehow taboo.
Thanks!
I don't think it would be taboo to save something that is public available, as you can just as simple visit those pages and print them to pdf for example.
The same goes to things you have access with your account, and it is not bound by a non-disclose agreement (you can still save, but not broadcast it - depending on the laws of your jurisdiction).
I looked into the lemm.ee default profile page, and you might have success with the tools I mentioned.
You just need to navigate these links, and make the tool open the post names.
https://lemmy.ca/u/megane_kun@lemm.ee?page=1&sort=New&view=Posts https://lemmy.ca/u/megane_kun@lemm.ee?page=1&sort=New&view=Comments
You will need to take in account navigation with "next" buttons, and some pages need to be scrolled down to load all the comments.
If you don't want to contact the Admins, and you are not pressed for time, put a delay on the tool's web requests to not overload the servers. The browser add-on might avoid that because it mimics a more natural way of navigating a website.
Yeah, I've had a think after I made my previous reply and the questionable part mentioned isn't the archiving, but the inclusion of the deleted/removed comments.
I still haven't started with the script mentioned in a different comment, but if I were to do it, I'd likely be putting a one second delay on every request.
Thanks!