Created
March 30, 2016 11:59
-
-
Save phantomas1234/ba59ae4dbfb6faa823e218f18bd8f198 to your computer and use it in GitHub Desktop.
AnimatedMarkerProgress.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| from IProgress import ProgressBar, RotatingMarker, UnknownLength, AnimatedMarker | |
| from IProgress.widgets import FormatLabel | |
| FormatLabel | |
| pbar = ProgressBar(widgets=[AnimatedMarker(markers="◐◓◑◒")]) | |
| pbar.start() | |
| for i in range(30): | |
| time.sleep(.1) | |
| pbar.update(i) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment