Skip to main content

fetch_http

Function fetch_http 

Source
pub async fn fetch_http(url: &str) -> Result<Vec<u8>>
Expand description

Fetch a file from an HTTP(S) URL

§Examples

use dsq_io_https::fetch_http;

let data = fetch_http("https://example.com/data.csv").await.unwrap();