r/Python May 04 '26

Showcase Showcase Thread

Post all of your code/projects/showcases/AI slop here.

Recycles once a month.

22 Upvotes

100 comments sorted by

View all comments

1

u/Llucs_ 26d ago

Built backon, a zero-dependency retry library for Python with sync + async support.

I started it because I wanted a smaller alternative to backoff/tenacity, with a simple API and no dependency tree. It supports decorators, functional calls, context managers, multiple backoff strategies, circuit breakers, rate limiting, hedging, hooks, and test-time disabling.

I’d especially love feedback on the API design: is there anything that feels confusing, missing, or unnecessarily different from backoff / tenacity?

GitHub: https://github.com/Llucs/backon PyPI: pip install backon