this post was submitted on 11 Jul 2023
8 points (100.0% liked)

Selfhosted

39964 readers
342 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

I recently started up FreshRSS in my docker environment. I was super excited about the web scraping feature.

Now that I'm setting it up, it looks like that it is able to scrape single web pages, but I am unable to figure out how to get it to crawl into the actual article to scrape the full content.

Is anyone aware of how to do this. For example, runescape.com/m=news/ This page has a list of articles with a thumbnail, title, category, date, and a short description of the article. Would it be possible for FreshRSS to crawl into the article link and scrape the contents within?

you are viewing a single comment's thread
view the rest of the comments
[–] gnzl@nc.gnzl.cl 1 points 1 year ago (7 children)

It can be done directly in FreshRSS and I've done it successfully with a few websites, though the process is fairly involved. Here's a starting point, from the FreshRSS documentation:

https://freshrss.github.io/FreshRSS/en/users/11_website_scraping.html

This blog post (also linked in the FreshRSS docs above) proved extremely useful as an example on how to get started:

https://danq.me/2022/09/27/freshrss-xpath/

Good luck!

[–] gnzl@nc.gnzl.cl 1 points 1 year ago* (last edited 1 year ago) (5 children)

Before you go reading all that, out of curiosity I looked around the RuneScape site and found the News RSS feed here:

https://secure.runescape.com/m=news/latest_news.rss

That feed contains only titles, thumbnails and a very small preview of each article. However, with FreshRSS you don't need to do scraping/crawling at all to get full articles from limited RSS feeds like this one. Here's what you do:

  1. Subscribe to the RSS feed in FreshRSS as you normally would.
  2. Go to Subscription Management and find the settings for the RuneScape feed.
  3. In the Advanced section of the feed settings, find the item called "Article CSS selector on original website", and write .c-news-article__content in that text box. You can click on the button next to the text box to preview the full article that FreshRSS will retrieve.
  4. Click Submit to save the changes, and then go to the bottom of the feed settings and click Reload articles so that FreshRSS populates the feed with a few full articles.

That should do it. The CSS selector essentially tells FreshRSS which section of the full article's HTML/CSS is the body of the article, which FreshRSS then uses to populate the body of the RSS feed.

[–] EliteCow@lemmy.dbzer0.com 2 points 1 year ago* (last edited 1 year ago)

Thank you so much! This worked out fantastically and it also looks great in the feed. I don't know how you figured this stuff out but I need to get learned up on this!

load more comments (4 replies)
load more comments (5 replies)