click-pacbar

Helper method to turn the click.progressbar into a Pacman!


Keywords
pacbar
License
MIT
Install
pip install click-pacbar==0.1.2

Documentation

Click Pacbar

Helper method to turn the click.progressbar into a Pacman!

  • Free software: MIT license

Features

Same interface as click.progressbar (http://click.pocoo.org/6/utils/#showing-progress-bars), just use pacbar.

Made mostly for my personal use, so use at your own risk. Enjoy!

import time

from pacbar import pacbar

with pacbar(range(10)) as bar:
for x in bar:
        time.sleep(1)

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.