
ResilixForge — an async resilience toolkit for Python (retries, circuit breakers, bulkheads)
I've been building ResilixForge, a resilience toolkit for async Python, and just made it open source.
The idea: retries, timeouts, circuit breakers, bulkheads and rate limits as declarative policies you compose, instead of hand-writing failure logic everywhere.
Focus areas:
- Safety-first policy engine (no eval, no exec)
- mypy --strict clean
- 200+ tests
- Apache-2.0
I know tenacity/stamina/pybreaker exist — I benchmark against them in the repo. This isn't a replacement, more an attempt to unify these patterns.
https://github.com/HybridSystemArchitect/resilixforge
Especially curious whether the circuit breaker semantics feel right to you.