Contents:
retry_on_exception()
Helper methods shared across package.
Retry a function if specific exceptions are raised.
retries (int) – Number of retries before giving up, defaults to 3
int
delay (float) – Delay in seconds between retries, defaults to 1.0
float
exceptions (Tuple[Type[Exception], ...]) – Exceptions that trigger a retry, defaults to (Exception,)
Tuple
Type
Exception
...
Any