[PR #2806] [CLOSED] Add reflexio to Distributed Computing section #6523

Closed
opened 2026-04-17 07:32:06 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/vinta/awesome-python/pull/2806
Author: @aponysus
Created: 11/23/2025
Status: Closed

Base: masterHead: add-reflexio


📝 Commits (2)

  • 8b4970c Add reflexio to Miscellaneous section
  • bb9cb3e Reclassify Reflexio under Distributed Computing

📊 Changes

1 file changed (+2 additions, -1 deletions)

View changed files

📝 README.md (+2 -1)

📄 Description

What is this Python project?

Reflexio is a retry library for Python that classifies failures into error classes and applies different retry strategies per class. It supports both synchronous and asynchronous code.

What's the difference between this Python project and similar ones?

Existing retry libraries such as Tenacity and backoff generally apply a single
backoff model and treat all exceptions uniformly. Reflexio takes a different
approach:

  • Errors are classified into error classes before retry decisions are made.
  • Each error class can have its own strategy (decorrelated jitter, equal jitter,
    fixed delay, fail-fast, or no retry).
  • It emits structured retry events for observability (attempt number, event type,
    sleep duration, error class, strategy).
  • The API surface is intentionally small and explicit, making retry behavior easier
    to reason about.

GitHub: https://github.com/aponysus/reflexio
Documentation: https://aponysus.github.io/reflexio/

Anyone who agrees with this pull request could submit an Approve review to it.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/vinta/awesome-python/pull/2806 **Author:** [@aponysus](https://github.com/aponysus) **Created:** 11/23/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `add-reflexio` --- ### 📝 Commits (2) - [`8b4970c`](https://github.com/vinta/awesome-python/commit/8b4970c071f2535fe7478fcf61a530ff00c1e3db) Add reflexio to Miscellaneous section - [`bb9cb3e`](https://github.com/vinta/awesome-python/commit/bb9cb3ec4bbf21e5236bdfec76fced6cfa0776fe) Reclassify Reflexio under Distributed Computing ### 📊 Changes **1 file changed** (+2 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+2 -1) </details> ### 📄 Description ## What is this Python project? Reflexio is a retry library for Python that classifies failures into error classes and applies different retry strategies per class. It supports both synchronous and asynchronous code. ## What's the difference between this Python project and similar ones? Existing retry libraries such as Tenacity and backoff generally apply a single backoff model and treat all exceptions uniformly. Reflexio takes a different approach: - Errors are **classified** into error classes before retry decisions are made. - Each error class can have its own **strategy** (decorrelated jitter, equal jitter, fixed delay, fail-fast, or no retry). - It emits **structured retry events** for observability (attempt number, event type, sleep duration, error class, strategy). - The API surface is intentionally small and explicit, making retry behavior easier to reason about. GitHub: https://github.com/aponysus/reflexio Documentation: https://aponysus.github.io/reflexio/ Anyone who agrees with this pull request could submit an *Approve* review to it. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-17 07:32:06 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-python#6523