Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save YaoKaiLun/a7baeeca747a6d08b5b7a5e0a357657c to your computer and use it in GitHub Desktop.
Save YaoKaiLun/a7baeeca747a6d08b5b7a5e0a357657c to your computer and use it in GitHub Desktop.
retry
for i in range(3):
try:
posts = get_userposts(user)
break
except:
print 'Failed user ' + user + ', retrying'
time.sleep(4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment