kumo 0.2.1

An async web crawling framework for Rust — Scrapy for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use kumo_derive::Extract;
use serde::Serialize;

#[derive(Extract, Serialize)]
struct Bad {
    #[extract(css = "h1", transform = "slugify")]
    title: String,
}

fn main() {}