Skip to content

Instantly share code, notes, and snippets.

View carlos-a-g-h's full-sized avatar
🌡️
self-diagnosed with YAML addiction, someone plz call a doctor

carlos-a-g-h

🌡️
self-diagnosed with YAML addiction, someone plz call a doctor
View GitHub Profile
@giuliano-macedo
giuliano-macedo / download_file.rs
Last active January 25, 2024 08:52
Download large files in rust with progress bar using reqwest, future_util and indicatif
// you need this in your cargo.toml
// reqwest = { version = "0.11.3", features = ["stream"] }
// futures-util = "0.3.14"
// indicatif = "0.15.0"
use std::cmp::min;
use std::fs::File;
use std::io::Write;
use reqwest::Client;
use indicatif::{ProgressBar, ProgressStyle};