Created
February 27, 2015 03:11
-
-
Save lazybios/4aea1180286ddf362e6b to your computer and use it in GitHub Desktop.
text loading
This file contains 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
spinsize = 10 | |
spinpos = 0 | |
spindir = 1 | |
def spin(): | |
global spinsize,spinpos,spindir | |
spinstr = '.'*spinpos + \ | |
'|' + '.'* (spinsize - spinpos -1) | |
sys.stdout.write('\r'+spinstr+' ') | |
sys.stdout.flush() | |
spinpos += spindir | |
if spinpos < 0: | |
spindir = 1 | |
spinpos = 1 | |
elif spinpos >= spinsize: | |
spinpos -= 2 | |
spindir = -1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment