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?

  • gnzl@nc.gnzl.cl
    link
    fedilink
    English
    arrow-up
    1
    ·
    11 months ago

    Using .site-content container clearfix didn’t work because those are actually three separate CSS classes, so you’d have to use only one - for example .site-content. However, it looks like .site-content is too big, as it includes the website’s sidebar as well. You may already know this but in Firefox and Chrome you can right click anywhere on the website and use the Inspect option to look at the source, and clicking on a section of the source highlights the corresponding section of the website and this will help you find exactly the CSS class you’re looking for. I did this on a couple articles from Humble Bundle and found a couple of options:

    • .post: This includes only the content of the post, excluding the title and the image.
    • .site-main: This includes the title, author, image and the content.

    Another useful tool in FreshRSS I forgot to mention is “CSS selector of the elements to remove”. You can use it to remove certain section from the full article, I’d recommend removing .sharedaddy and .entry-footer (the sharing links at the end of the article), and also .entry-header if you use .site-main as the CSS selector for the full article (.entry-header is the title of the article, but FreshRSS already fetches it from the RSS feed so you don’t need it in the body of the article as well). You can remove multiple sections by using a comma-separated list of CSS classes to remove:

    .entry-header, .sharedaddy, .entry-footer

    • EliteCow@lemmy.dbzer0.comOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      11 months ago

      Thank you again :). From your explanation, I think I have a good grasp on how to identify the proper CSS elements now.

      Have a wonderful day!

      • gnzl@nc.gnzl.cl
        link
        fedilink
        English
        arrow-up
        1
        ·
        11 months ago

        No problem! FreshRSS really is amazing so I’m happy to help and spread the love.