Skip to main content

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 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.
Basic usage:

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 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 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)

A call to clear() simply clears the current line from the terminal.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

printbuddies-1.0.0.tar.gz (8.4 kB view details)

Uploaded Source

Built Distribution

printbuddies-1.0.0-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file printbuddies-1.0.0.tar.gz.

File metadata

  • Download URL: printbuddies-1.0.0.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for printbuddies-1.0.0.tar.gz
Algorithm Hash digest
SHA256 36839c3d977a386c0db40b28138d607a3d64150def8ddcf7f5173fbd64d4f6b5
MD5 72cfbc225268bbd21df421cf48899c0f
BLAKE2b-256 11805a33a74db9f1aa29ba4c8432403ce4aa1cd3e6103011cfa627f8d4b2df5d

See more details on using hashes here.

Provenance

File details

Details for the file printbuddies-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for printbuddies-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 233c16d8a5d1c52389f414ece44ebb4c8d39ec45f7ad2d2799ac47cfc0de81f3
MD5 353bbb178d4f25c9a1cf8d4a8715701f
BLAKE2b-256 68961c1c6b6a69476cff4e5f80eb63608ff2f5bd50a8982014578985a2eacae2

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page