From 925e205c8a906c9a30c04bcf10d2a2896e337309 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 24 Aug 2024 00:20:23 +0200 Subject: [PATCH] Fetch python questions page 1 --- src/main.rs | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index e7a11a9..2b753fa 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,14 @@ -fn main() { - println!("Hello, world!"); +async fn get_qs() -> reqwest::Result> { + let body = reqwest::get("https://stackoverflow.com/questions/tagged/python").await; + if let Err(e) = body { + return Err(e); + } + + println!(body); + Ok(vec![]) +} + +#[tokio::main] +async fn main() { + get_qs().await; }