forked from spider-rs/spider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbudget.rs
36 lines (29 loc) · 796 Bytes
/
budget.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//! `cargo run --example budget --features budget`
extern crate spider;
use spider::tokio;
use spider::website::Website;
use std::io::Error;
use std::time::Instant;
#[tokio::main]
async fn main() -> Result<(), Error> {
let mut website = Website::new("https://rsseau.fr")
.with_budget(Some(spider::hashbrown::HashMap::from([
("*", 15),
("en", 11),
("fr", 3),
])))
.build()?;
let start = Instant::now();
website.crawl().await;
let duration = start.elapsed();
let links = website.get_links();
for link in links {
println!("- {:?}", link.as_ref());
}
println!(
"Time elapsed in website.crawl() is: {:?} for total pages: {:?}",
duration,
links.len()
);
Ok(())
}