24 releases (7 stable)

1.1.1 Feb 8, 2023
1.0.4 Jan 10, 2021
1.0.3 May 28, 2020
1.0.2 Sep 21, 2019
0.0.4 Oct 15, 2015

#77 in Command-line interface

Download history 6875/week @ 2023-12-16 5359/week @ 2023-12-23 6400/week @ 2023-12-30 6527/week @ 2024-01-06 6714/week @ 2024-01-13 6734/week @ 2024-01-20 7363/week @ 2024-01-27 5897/week @ 2024-02-03 7302/week @ 2024-02-10 9537/week @ 2024-02-17 11142/week @ 2024-02-24 11421/week @ 2024-03-02 6734/week @ 2024-03-09 6726/week @ 2024-03-16 8157/week @ 2024-03-23 6839/week @ 2024-03-30

29,638 downloads per month
Used in 123 crates (99 directly)

MIT license

40KB
726 lines

Terminal progress bar for Rust

Latest version License Docs Build Status Gitter

Console progress bar for Rust Inspired from pb, support and tested on MacOS, Linux and Windows

Screenshot

Documentation

Examples

  1. simple example
use pbr::ProgressBar;
use std::thread;

fn main() {
    let count = 1000;
    let mut pb = ProgressBar::new(count);
    pb.format("╢▌▌░╟");
    for _ in 0..count {
        pb.inc();
        thread::sleep_ms(200);
    }
    pb.finish_print("done");
}
  1. MultiBar example. see full example here
use std::thread;
use pbr::MultiBar;
use std::time::Duration;

fn main() {
    let mut mb = MultiBar::new();
    let count = 100;
    mb.println("Application header:");

    let mut p1 = mb.create_bar(count);
    let _ = thread::spawn(move || {
        for _ in 0..count {
            p1.inc();
            thread::sleep(Duration::from_millis(100));
        }
        // notify the multibar that this bar finished.
        p1.finish();
    });

    mb.println("add a separator between the two bars");

    let mut p2 = mb.create_bar(count * 2);
    let _ = thread::spawn(move || {
        for _ in 0..count * 2 {
            p2.inc();
            thread::sleep(Duration::from_millis(100));
        }
        // notify the multibar that this bar finished.
        p2.finish();
    });

    // start listen to all bars changes.
    // this is a blocking operation, until all bars will finish.
    // to ignore blocking, you can run it in a different thread.
    mb.listen();
}
  1. Broadcast writing (simple file copying)
#![feature(io)]
use std::io::copy;
use std::io::prelude::*;
use std::fs::File;
use pbr::{ProgressBar, Units};

fn main() {
    let mut file = File::open("/usr/share/dict/words").unwrap();
    let n_bytes = file.metadata().unwrap().len() as usize;
    let mut pb = ProgressBar::new(n_bytes);
    pb.set_units(Units::Bytes);
    let mut handle = File::create("copy-words").unwrap().broadcast(&mut pb);
    copy(&mut file, &mut handle).unwrap();
    pb.finish_print("done");
}

License

MIT

Dependencies

~310–560KB