Skip to content

Instantly share code, notes, and snippets.

@CatoLynx
Last active August 29, 2015 14:08
Show Gist options
  • Save CatoLynx/1bca4d275c99976f9815 to your computer and use it in GitHub Desktop.
Save CatoLynx/1bca4d275c99976f9815 to your computer and use it in GitHub Desktop.
Catch only a specific APIError and let others through
def catch_only_rate_limit():
try:
do_some_twitter_stuff()
except tweetpony.APIError as error:
if error.code == 88:
print "Oops, rate limited!"
else:
raise
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment