TITLE
tags```rust use crusty_core::prelude::*;
pub struct JobState { sumtitlelen: usize }
pub struct TaskState { title: String }
pub struct DataExtractor {}
type Ctx = JobCtx
async fn main() -> anyhow::Result<()> { let crawler = Crawler::new_default()?;
let settings = config::CrawlingSettings::default(); let rules = CrawlingRules::default().withtaskexpander(|| DataExtractor{} );
let job = Job::new("https://example.com", settings, rules, JobState::default())?; for r in crawler.iter(job) { println!("- {}, task state: {:?}", r, r.ctx.taskstate); if let JobStatus::Finished() = r.status { println!("final job state: {:?}", r.ctx.job_state.lock().unwrap()); } } Ok(()) } ```
If you want to get more fancy and configure some stuff or control your imports more precisely ```rust use crusty_core::prelude::*;
pub struct JobState { sumtitlelen: usize }
pub struct TaskState { title: String }
pub struct DataExtractor {}
type Ctx = JobCtx
async fn main() -> anyhow::Result<()> { let crawler = Crawler::new_default()?;
let settings = config::CrawlingSettings::default(); let rules = CrawlingRules::default().withtaskexpander(|| DataExtractor{} );
let job = Job::new("https://example.com", settings, rules, JobState::default())?; for r in crawler.iter(job) { println!("- {}, task state: {:?}", r, r.ctx.taskstate); if let JobStatus::Finished() = r.status { println!("final job state: {:?}", r.ctx.job_state.lock().unwrap()); } } Ok(()) } ```
Simply add this to your Cargo.toml
[dependencies]
crusty-core = "~0.15.0"
Please see examples for more complicated usage scenarios. This crawler is more verbose than some others, but it allows incredible customization at each and every step.
If you are interested in the area of broad web crawling there's crusty, developed fully on top of crusty-core
that tries to tackle on some challenges of broad web crawling