11 releases

0.0.11 Oct 25, 2024
0.0.10 Aug 29, 2024

#14 in #readability

Download history 285/week @ 2024-11-05 202/week @ 2024-11-12 334/week @ 2024-11-19 418/week @ 2024-11-26 232/week @ 2024-12-03 313/week @ 2024-12-10 168/week @ 2024-12-17 116/week @ 2024-12-24 124/week @ 2024-12-31 175/week @ 2025-01-07 79/week @ 2025-01-14 271/week @ 2025-01-21 270/week @ 2025-01-28 326/week @ 2025-02-04 292/week @ 2025-02-11 4/week @ 2025-02-18

930 downloads per month
Used in 2 crates (via spider_transformations)

MIT license

27KB
746 lines

llm_readability

The Rust readability library built for performance, AI, and multiple locales. The library is used on Spider Cloud for data cleaning.

Usage

[dependencies]
llm_readability = "0"
use llm_readability::extractor;

fn main() {
  match extractor::extract(&mut "<html>...</html>".as_bytes(), "https://example.com", None) {
      Ok(product) => {
          println!("------- html ------");
          println!("{}", product.content);
          println!("---- plain text ---");
          println!("{}", product.text);
      },
      Err(_) => println!("error occured"),
  }
}

This project is a rewrite of readability-rs for performance and bug fixes.

Dependencies

~9–16MB
~271K SLoC