wip fetching dates

This commit is contained in:
Mylloon 2022-08-15 14:53:09 +02:00
parent 918431b731
commit 6dc1fb616f
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -1,8 +1,17 @@
use scraper::Html;
use scraper::{Html, Selector};
pub async fn info() {
let _document_info = get_webpage().await.expect("Can't reach info website.");
// println!("{:#?}", document_info);
let document = get_webpage().await.expect("Can't reach info website.");
// Selectors
let sel_ul = Selector::parse("ul").unwrap();
// Find the raw infos in html page
for (i, data) in document.select(&sel_ul).enumerate() {
if [1, 2].contains(&i) {
println!("\n{} - {:#?}", data.value().name(), data.inner_html());
}
}
}
async fn get_webpage() -> Result<Html, Box<dyn std::error::Error>> {