[PR #2733] Add Dispytch to Asynchronous Programming section #2046

Open
opened 2025-11-06 13:28:25 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/vinta/awesome-python/pull/2733
Author: @e1-m
Created: 7/10/2025
Status: 🔄 Open

Base: masterHead: master


📝 Commits (1)

📊 Changes

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

View changed files

📝 README.md (+1 -0)

📄 Description

What is this Python project?

Dispytch is a lightweight, async-first Python framework for event-handling. It’s designed to streamline the development of clean and testable event-driven services.

Features

Async-first core – built for modern Python I/O
FastAPI-style dependency injection – clean, decoupled handlers
Backend-flexible – with Kafka and RabbitMQ out-of-the-box
Composable architecture – extend, override, or inject anything
Pydantic-based validation – event schemas are validated using pydantic
Built-in retry logic – configurable, resilient, no boilerplate

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

vs Celery: Dispytch is not tied to task queues or background jobs. It treats events as first-class entities, not side tasks.

vs Faust: Faust is opinionated toward stream processing (à la Kafka). Dispytch is backend-agnostic and doesn’t assume streaming.

vs Nameko: Nameko is heavier, synchronous by default, and tied to RPC-style services. Dispytch is lean, async-first, and modular.

vs FastAPI: FastAPI is HTTP-centric. Dispytch is protocol-agnostic — it’s about event handling, not API routing.


🔄 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/2733 **Author:** [@e1-m](https://github.com/e1-m) **Created:** 7/10/2025 **Status:** 🔄 Open **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`3b1b6aa`](https://github.com/vinta/awesome-python/commit/3b1b6aab0f2c719fec3839cbb91da15f5f5d6235) Update README.md ### 📊 Changes **1 file changed** (+1 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) </details> ### 📄 Description ## What is this Python project? [Dispytch](https://github.com/e1-m/dispytch) is a lightweight, async-first Python framework for event-handling. It’s designed to streamline the development of clean and testable event-driven services. ## Features Async-first core – built for modern Python I/O FastAPI-style dependency injection – clean, decoupled handlers Backend-flexible – with Kafka and RabbitMQ out-of-the-box Composable architecture – extend, override, or inject anything Pydantic-based validation – event schemas are validated using pydantic Built-in retry logic – configurable, resilient, no boilerplate ## What's the difference between this Python project and similar ones? vs Celery: Dispytch is not tied to task queues or background jobs. It treats events as first-class entities, not side tasks. vs Faust: Faust is opinionated toward stream processing (à la Kafka). Dispytch is backend-agnostic and doesn’t assume streaming. vs Nameko: Nameko is heavier, synchronous by default, and tied to RPC-style services. Dispytch is lean, async-first, and modular. vs FastAPI: FastAPI is HTTP-centric. Dispytch is protocol-agnostic — it’s about event handling, not API routing. --- <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 2025-11-06 13:28:25 -06: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#2046