Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dmitriiweb/clpb

Command line progress bar for Python 3
https://github.com/dmitriiweb/clpb

command-line-tool progress-bar progressbar python python-3 python-library

Last synced: about 2 months ago
JSON representation

Command line progress bar for Python 3

Awesome Lists containing this project

README

        

# CLPB
Command Line Progress Bar for Python 3.x

## Installation
```
pip install clpb
```

## Examples
```
>>> from clpb import ProgressBar
>>> items_length = 69
>>> pb = ProgressBar(0, items_length)
>>> pb.initial_print()
... pb.current_print(i+1)
Progress |████████████████████████████████████████| 100.0% Complete
```
```
>>> from clpb import ProgressBar
>>> items_length = 69
>>> pb = ProgressBar(0, items_length, fill='#')
>>> pb.initial_print()
... pb.current_print(i+1)
Progress |########################################| 100.0% Complete
```