wikidata/examples/getfromnet.rs
2021-05-30 19:04:10 -04:00

18 lines
528 B
Rust

use wikidata::*;
fn main() {
for i in 1_usize.. {
let uri = format!(
"https://www.wikidata.org/wiki/Special:EntityData/Q{}.json",
i
);
let res = reqwest::blocking::get(uri).unwrap();
let text = res.text().unwrap();
if text.contains("<h1>Not Found</h1><p>No entity with ID ") {
continue;
}
let ent = Entity::from_json(serde_json::from_str(&text).unwrap()).unwrap();
let _ = ent;
println!("verified Q{}", i);
}
}