Skip to content

Instantly share code, notes, and snippets.

@phantomas1234
Created March 30, 2016 11:59
Show Gist options
  • Select an option

  • Save phantomas1234/ba59ae4dbfb6faa823e218f18bd8f198 to your computer and use it in GitHub Desktop.

Select an option

Save phantomas1234/ba59ae4dbfb6faa823e218f18bd8f198 to your computer and use it in GitHub Desktop.
AnimatedMarkerProgress.py
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