Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
/ pecho Public archive

Easy way to write things like status bars

License

Notifications You must be signed in to change notification settings

nihaals/pecho

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pecho

Tests codecov PyPI PyPI - Python Version PyPI - Wheel

Pecho makes it easy to write things like status bars.

Usage

from pecho import echo

echo('1%')  # 1%
echo('2%')  # Replaces with 2%
echo('3%', newline=True)  # Replaces with 3% and appends a newline
echo('4%')  # 3%\n4%