Description
Repeats failed operations from Python code according to rules chosen by the developer, such as maximum attempts, delays, or retryable exceptions. It is useful for network calls, file operations, and temporary service failures where trying again can be correct.
This is a library, not a separate app. Use retry rules carefully: repeating unsafe operations can duplicate writes, hide real failures, or overload a service if delays and limits are too aggressive.