3 个不稳定版本
0.1.1 | 2022年1月26日 |
---|---|
0.1.0 | 2021年1月26日 |
0.0.1 | 2020年11月1日 |
4 在 #tqdm 中
每月下载量 36
9KB
147 行
tqdm-rs
受 Python 的 tqdm
启发的简单进度条库。
示例用法
for _ in tqdm_rs::Tqdm::new(0..10) {
tqdm_rs::write("Doing some work...\nOn multiple lines!");
std::thread::sleep(std::time::Duration::from_millis(100));
continue
}
// It is possible to use print, but it looks more clumsy!
for _ in tqdm_rs::Tqdm::new(0..10) {
println!("Doing some work...\nOn multiple lines!");
std::thread::sleep(std::time::Duration::from_millis(100));
continue
}
let mut tq = tqdm_rs::Tqdm::manual(100);
for _ in 0..10 {
println!("I am updated manually!");
tq.update(10);
}
依赖项
~230KB