Prints a progress bar to the terminal from python.
Project description
pyterm_progress_bar
Prints a progress bar to the terminal from python.
ProgressBar
import pyterm_progress_bar
progress_bar = pyterm_progress_bar.ProgressBar(
name='Progress', # Default
char='#' # Default
)
progress_bar.start()
for i in range (0, 5):
# Do stuff
progress_bar.update((i+1)/5) # between 0 and 1 inclusive.
Loop
pyterm_progress_bar can automatically perform a loop for you to save you having to do the difficult math.
import pyterm_progress_bar
def my_func(counter, data): # data param is optional here
# Do stuff
# 'counter' is the loop counter
# 'data' is whatever you pass as 'param' in the next step
loop = pyterm_progress_bar.Loop(
my_func,
number_of_iterations=300,
param=['foo', 'bar', '🐙'], # Optional
progress_bar_name='Running my_func', # Default
progress_bar_char='#' # Default
)
loop.execute()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pyterm_progress_bar-0.0.1.tar.gz
.
File metadata
- Download URL: pyterm_progress_bar-0.0.1.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 102af71c516fc46bd4175710232c117900c635998af7556f8acfa0e2828dd54c |
|
MD5 | b4f0ea50f5a14f10a5c9937ed5279c7e |
|
BLAKE2b-256 | 5bb193d9e3b6a7b9f37eb34765eb415e9501f32c4e41432c93370b8142451087 |