#web-crawler #spider #data-transformation #content #cleaning #chunking

spider_transformations

Transformation utils to use for Spider Web Crawler

81 stable releases

new 2.10.7 Oct 22, 2024
2.9.17 Oct 21, 2024
2.6.21 Sep 30, 2024
0.0.3 Sep 21, 2024

#1644 in Web programming

Download history 996/week @ 2024-09-17 893/week @ 2024-09-24 2959/week @ 2024-10-01 3383/week @ 2024-10-08 2055/week @ 2024-10-15

9,684 downloads per month
Used in spider_utils

MIT license

205KB
4.5K SLoC

spider_transformations

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

Usage

[dependencies]
spider_transformations = "0"
use spider_transformations::transformation::content;

fn main() {
    // page comes from the spider object when streaming.
    let conf = content::TransformConfig::default();
    let content = content::transform_content(&page, &conf, &None, &None);
}

Transfrom types

  1. Markdown
  2. Commonmark
  3. Text
  4. Markdown (Text Map) or HTML2Text
  5. WIP: HTML2XML

Enhancements

  1. Readability
  2. Encoding

Chunking

There are several chunking utils in the transformation mod.

This project has rewrites and forks of html2md, and html2text for performance and bug fixes.

License

MIT

Dependencies

~20–35MB
~617K SLoC