A small Python library of decorators to help make your application more resilient. Currently, there are two decorators provided: Retryable – automatically re-calls the wrapped function if an exception is raised. CircuitBreaker – prevent calls to the wrapped function if it is known to currently be failing. The documentation here will be brief, but hopefully…
