kumo 0.5.0

An async web crawling framework for Rust - Scrapy for Rust
Documentation
1
2
3
4
5
6
7
8
use kumo_derive::Extract;

#[derive(Extract)]
struct Bad {
    title: String, // missing #[extract(css = "...")]
}

fn main() {}