-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathbudget.rs
38 lines (31 loc) · 958 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
37
38
//! `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/en")
.with_budget(Some(spider::hashbrown::HashMap::from([
("*", 15),
("en", 11),
("fr", 3),
])))
.with_limit(15) // this does the same as the above "*", 15. Setting a limit to the amount of pages gathered.
.build()
.unwrap();
let start = Instant::now();
website.crawl().await;
let duration = start.elapsed();
let links = website.get_all_links_visited().await;
for link in links.iter() {
println!("- {:?}", link.as_ref());
}
println!(
"Time elapsed in website.crawl() is: {:?} for total pages: {:?}",
duration,
links.len()
);
Ok(())
}