Handful of utilities to do printing tricks to the terminal.
Project description
printbuddies
A few utilities to do terminal printing tricks.
Install with:
pip install printbuddies
Contains one class and three functions: ProgBar, print_in_place, ticker, and clear.
ProgBar
ProgBar is a self-incrementing, dynamically sized progress bar.
The progress counter and completion values can be manually overriden if desired.
The width of the progress bar is set according to a ratio of the terminal width
so it will be resized automatically if the terminal width is changed.
The display function has a 'return_object' parameter, allowing ProgBar to be used in comprehensions.
from printbuddies import ProgBar total = 100 bar = ProgBar(total=total-1) for _ in range(total): bar.display() bar.reset() my_list = [bar.display(return_object=i) for i in range(total)]
print_in_place
'print_in_place' erases the current line in the terminal and then writes the value of
the 'string' param to the terminal.
from printbuddies import print_in_place import time #This will print numbers 0-99 to the terminal with each digit overwriting the last. for i in range(100): print_in_place(i) time.sleep(0.1)
ticker
'ticker' prints a list of strings to the terminal with empty lines above and below
such that previous text in the terminal is no longer visible.
Visually, It functions as a multi-line version of print_in_place.
from printbuddies import ticker import time #This will produce visually the same output as the above example for i in range(100): ticker([i]) time.sleep(0.1)
clear
A call to printbuddies.clear()
simply clears the current line from the terminal.
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
Built Distribution
File details
Details for the file printbuddies-1.1.0.tar.gz
.
File metadata
- Download URL: printbuddies-1.1.0.tar.gz
- Upload date:
- Size: 45.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 889b07f936624a764324344f379a50aa4c5f5e04929374209c5abcc15176fa8f |
|
MD5 | e79c80db11e33d3bca133b33e132c17c |
|
BLAKE2b-256 | fcc4ba26cdbca8024c7456c20c342c7c4b891eb758826a90baa428e7937ea0f1 |
Provenance
File details
Details for the file printbuddies-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: printbuddies-1.1.0-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b94928dde8858838243342fe3c307088b76e4da6f2c07626f5e3c0a79e673662 |
|
MD5 | db8b08f2314c4d1a3be998da8a78191f |
|
BLAKE2b-256 | faecaf078ce20693d24b8dd96c754115224b3fcb1c5e8b5ef33f25cb3f80f165 |