Metadata-Version: 2.1
Name: pecho
Version: 0.2.0
Summary: Easy way to write things like status bars
Home-page: https://github.com/OrangutanGaming/pecho
License: MIT
Author: Nihaal Sangha
Author-email: 18350092+OrangutanGaming@users.noreply.github.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: colorama (>=0.4.3,<0.5.0)
Project-URL: Repository, https://github.com/OrangutanGaming/pecho
Description-Content-Type: text/markdown

# pecho
Pecho makes it easy to write things like status bars.

## Usage
```python
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%
```

