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
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: |