Skip to content

Instantly share code, notes, and snippets.

View ledunguit's full-sized avatar

ZeD ledunguit

  • LD
View GitHub Profile
@ledunguit
ledunguit / download_file.rs
Created November 30, 2023 15:28 — forked from giuliano-macedo/download_file.rs
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};