Skip to content

Instantly share code, notes, and snippets.

View oantoshchenko's full-sized avatar

Oleksandr Antoshchenko oantoshchenko

View GitHub Profile
import random
# Bref intro http://stackoverflow.com/questions/5929107/python-decorators-with-parameters
def retry(tries):
def decorator(function):
def wrapper(*args, **kvargs):
attempt = 0
while attempt <= tries:
try: