Pybites Logo

Make a terminal spinner animation

Level: Advanced (score: 4)

In this Bite you will spice up your command line apps with a loader animation.

You will use itertools.cycle and sys.stdout to make the following terminal spinner animation:


our fancy spinner animation in action

Apart from the module imports we already defined SPINNER_STATES and STATE_TRANSITION_TIME = the amount of time to pause between states. Hopefully this will make it a bit easier.

One last hint is to look at how to flush terminal output so states you print to stdout don't get concatenated.

Good luck and keep calm and code in Python!