Skip to content

Instantly share code, notes, and snippets.

@hashar
Created July 24, 2014 21:24
Show Gist options
  • Save hashar/3b935b41ef9126dc3501 to your computer and use it in GitHub Desktop.
Save hashar/3b935b41ef9126dc3501 to your computer and use it in GitHub Desktop.
monkeys based spinner
import sys
import time
monkeys = [
u'\U0001F648',
u'\U0001F649',
u'\U0001F64A',
]
try:
while True:
for m in monkeys:
print '\r%s ' % m,
sys.stdout.flush()
time.sleep(1)
except KeyboardInterrupt:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment