From 4a334d9cda5345069af076f17f8f887d652b61b8 Mon Sep 17 00:00:00 2001 From: Semen Frolov Date: Tue, 21 Apr 2026 21:30:40 +0300 Subject: [PATCH 1/2] docs(message-brokers): add FastStream and Message Brokers category Co-Authored-By: Claude Opus 4.7 (1M context) --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 407ddf95a..63cd8f7b8 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,7 @@ An opinionated list of Python frameworks, libraries, tools, and resources. - [DevOps Tools](#devops-tools) - [Distributed Computing](#distributed-computing) - [Task Queues](#task-queues) +- [Message Brokers](#message-brokers) - [Job Schedulers](#job-schedulers) - [Logging](#logging) - [Network Virtualization](#network-virtualization) @@ -737,6 +738,12 @@ _Libraries for working with task queues._ - [huey](https://github.com/coleifer/huey) - Little multi-threaded task queue. - [rq](https://github.com/rq/rq) - Simple job queues for Python. +## Message Brokers + +_Libraries for working with message brokers and event streaming._ + +- [faststream](https://github.com/ag2ai/faststream) - A framework for building asynchronous services over Apache Kafka, RabbitMQ, NATS, and Redis. + ## Job Schedulers _Libraries for scheduling jobs._ From 427dfc000310d618ecac57bafce66b62a134961e Mon Sep 17 00:00:00 2001 From: Semen Frolov <148821259+vvlrff@users.noreply.github.com> Date: Thu, 23 Apr 2026 22:45:50 +0300 Subject: [PATCH 2/2] Rename Message Brokers to Messaging Updated 'Message Brokers' section to 'Messaging' and added MQTT to the faststream description. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 77e829d9e..f561de36c 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ An opinionated list of Python frameworks, libraries, tools, and resources. - [DevOps Tools](#devops-tools) - [Distributed Computing](#distributed-computing) - [Task Queues](#task-queues) -- [Message Brokers](#message-brokers) +- [Messaging](#messaging) - [Job Schedulers](#job-schedulers) - [Logging](#logging) - [Network Virtualization](#network-virtualization) @@ -739,11 +739,11 @@ _Libraries for working with task queues._ - [huey](https://github.com/coleifer/huey) - Little multi-threaded task queue. - [rq](https://github.com/rq/rq) - Simple job queues for Python. -## Message Brokers +## Messaging _Libraries for working with message brokers and event streaming._ -- [faststream](https://github.com/ag2ai/faststream) - A framework for building asynchronous services over Apache Kafka, RabbitMQ, NATS, and Redis. +- [faststream](https://github.com/ag2ai/faststream) - A framework for building asynchronous services over Apache Kafka, RabbitMQ, NATS, MQTT and Redis. ## Job Schedulers