#web-scraping #full-text #readability #article #scrape

article_scraper

Scrap article contents from the web. Powered by fivefilters full text feed configurations & mozilla readability.

11 stable releases

2.1.0 Mar 24, 2024
2.0.0 Jun 23, 2023
2.0.0-alpha.0 Apr 23, 2023
1.1.7 Jan 21, 2021
1.0.0 Apr 28, 2020

#217 in Web programming

Download history 3/week @ 2023-12-22 2/week @ 2023-12-29 98/week @ 2024-01-05 5/week @ 2024-01-12 1/week @ 2024-01-19 5/week @ 2024-01-26 16/week @ 2024-02-02 7/week @ 2024-02-09 45/week @ 2024-02-16 47/week @ 2024-02-23 27/week @ 2024-03-01 48/week @ 2024-03-08 30/week @ 2024-03-15 311/week @ 2024-03-22 134/week @ 2024-03-29 67/week @ 2024-04-05

548 downloads per month
Used in news-flash

GPL-3.0-or-later

415KB
5K SLoC

article scraper

The article_scraper crate provides a simple way to extract meaningful content from the web. It contains two ways of locating the desired content

1. Rust implementation of Full-Text RSS

This makes use of website specific extraction rules. Which has the advantage of fast & accurate results. The disadvantages however are: the config needs to be updated as the website changes and a new extraction rule is needed for every website.

A central repository of extraction rules and information about writing your own rules can be found here: ftr-site-config. Please consider contributing new rules or updates to it.

article_scraper embeds all the rules in the ftr-site-config repository for convenience. Custom and updated rules can be loaded from a user_configs path.

2. Mozilla Readability

In case the ftr-config based extraction fails the mozilla Readability algorithm will be used as a fall-back. This re-implementation tries to mimic the original as closely as possible.

Example

use article_scraper::ArticleScraper;
use url::Url;
use reqwest::Client;

let scraper = ArticleScraper::new(None);
let url = Url::parse("https://www.nytimes.com/interactive/2023/04/21/science/parrots-video-chat-facetime.html");
let client = Client::new();
let article = scraper.parse(&url, false, &client, None).await.unwrap();

CLI

Various features of this crate can be used via article_scraper_cli.

Usage: article_scraper_cli [OPTIONS] <COMMAND>

Commands:
  all          Use the complete pipeline
  readability  Only use the Readability parser
  ftr          Only use (a subset of) the Ftr parser
  help         Print this message or the help of the given subcommand(s)

Options:
  -d, --debug          Turn debug logging on
  -o, --output <FILE>  Destination of resulting HTML file
  -h, --help           Print help
  -V, --version        Print version

Dependencies

~25–42MB
~588K SLoC