Comment by Terretta
14 days ago
For Python, consider Tenacity: https://tenacity.readthedocs.io/en/latest/
At the CLI, this is nice for not depending on Node.
14 days ago
For Python, consider Tenacity: https://tenacity.readthedocs.io/en/latest/
At the CLI, this is nice for not depending on Node.
Stamina for good defaults on Tenacity: https://github.com/hynek/stamina
for Node.js, consider retry: https://www.npmjs.com/package/retry
>For Python, consider Tenacity
>>For node.js, consider retry
For .NET, consider Polly[0]
[0]https://www.pollydocs.org/
Would also recommend opnieuw: https://github.com/channable/opnieuw
backoff is good, too: https://github.com/litl/backoff
I moved away from tenacity because of type-checking issues. I might check out stamina next time.
Does recur depend on node?