prgrs 0.2.0

prgrs is a progress bar for rust, that aims to work like the python package tqdm
Documentation

prgrs - A simple to use progress bar for your iterators

prgrs is a progress bar for rust, that aims to work like the python package tqdm.

Example:

use std::{thread, time};
use prgrs::{Prgrs, writeln};

for i in Prgrs::new(0..1000, 1000) {
    thread::sleep(time::Duration::from_millis(5));
    let str = format!("{}", i);
    writeln(&str);
}

Todos:

  • Fix doc tests
  • Better error handling