10 stable releases

2.2.4 Sep 19, 2023
2.2.3 May 14, 2023
2.2.2 Apr 26, 2023
2.2.1 Mar 6, 2023
1.0.0 Mar 29, 2022

#142 in Concurrency

Download history 44/week @ 2023-12-22 67/week @ 2023-12-29 42/week @ 2024-01-05 132/week @ 2024-01-12 55/week @ 2024-01-19 91/week @ 2024-01-26 85/week @ 2024-02-02 73/week @ 2024-02-09 79/week @ 2024-02-16 195/week @ 2024-02-23 316/week @ 2024-03-01 207/week @ 2024-03-08 87/week @ 2024-03-15 67/week @ 2024-03-22 164/week @ 2024-03-29 34/week @ 2024-04-05

360 downloads per month
Used in 7 crates

MIT license

295KB
535 lines

Trauma

Crates.io Documentation ci

Tokio Rust Asynchronous Universal download MAnager

Description

Trauma is a library simplifying and prettifying HTTP(s) downloads. The downloads are executed asynchronously and progress bars are drawn on the screen to help monitoring the process.

screenshot

Features

  • Library only
  • HTTP(S) downloads
  • Support download via proxies
  • Download files via providing a list of URLs
    • Ability to rename downloaded files
  • Ability to configure the download manager
    • Download directory
    • Maximum simultaneous requests
    • Number of retries
    • Resume downloads (if supported by the remote server)
    • Custom HTTP Headers
  • Asynchronous w/ Tokio
  • Progress bar w/ indicatif
    • Display the individual progress
    • Display the total progress
  • Ability to customize the progress bars
    • Customize the format
    • Customize the progression style
    • Leave them on the screen or clear them upon completion
    • Hide any or both of them
    • Add pre-configured styles

Usage

Add this to your Cargo.toml:

[dependencies]
trauma = "2"

Quick start

use std::path::PathBuf;
use trauma::{download::Download, downloader::DownloaderBuilder, Error};

#[tokio::main]
async fn main() -> Result<(), Error> {
    let reqwest_rs = "https://github.com/seanmonstar/reqwest/archive/refs/tags/v0.11.9.zip";
    let downloads = vec![Download::try_from(reqwest_rs).unwrap()];
    let downloader = DownloaderBuilder::new()
        .directory(PathBuf::from("output"))
        .build();
    downloader.download(&downloads).await;
    Ok(())
}

More examples can be found in the examples folder. They are well commented and will guide you through the different features of this library.

Why another download manager

Before starting this project, I spent some time searching the internet, trying not to reinvent the wheel. And I did find a bunch of interesting existing projects!

However they are almost all abandoned:

As a result, I decided to write trauma.

Dependencies

~13–28MB
~424K SLoC