From 4a334d9cda5345069af076f17f8f887d652b61b8 Mon Sep 17 00:00:00 2001 From: Semen Frolov Date: Tue, 21 Apr 2026 21:30:40 +0300 Subject: [PATCH 1/4] 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 407ddf95ac..63cd8f7b83 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/4] 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 77e829d9e0..f561de36cb 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 From 39b1476ac47ab573b8c27f15f187a0821907b075 Mon Sep 17 00:00:00 2001 From: Morteza Hosseini Date: Fri, 24 Apr 2026 12:33:01 +0100 Subject: [PATCH 3/4] docs(ai-agents): add OpenAI's framework for building AI agents Co-authored-by: Copilot --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2c6956f82b..e441a5ccbd 100644 --- a/README.md +++ b/README.md @@ -141,6 +141,7 @@ _Libraries for building AI applications, LLM integrations, and autonomous agents - [dspy](https://github.com/stanfordnlp/dspy) - A framework for programming, not prompting, language models. - [hermes-agent](https://github.com/nousresearch/hermes-agent) - An adaptive AI agent framework that grows with you. - [langchain](https://github.com/langchain-ai/langchain) - Building applications with LLMs through composability. + - [openai-agents](https://github.com/openai/openai-agents-python) - OpenAI's framework for building and managing AI agents. - [pydantic-ai](https://github.com/pydantic/pydantic-ai) - A Python agent framework for building generative AI applications with structured schemas. - [TradingAgents](https://github.com/TauricResearch/TradingAgents) - A multi-agents LLM financial trading framework. - Data Layer From e386fbb0e6d7959cdec9943a829bbceb4e6591c0 Mon Sep 17 00:00:00 2001 From: cak Date: Fri, 24 Apr 2026 08:58:59 -0400 Subject: [PATCH 4/4] add Web Security section and secure --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 2c6956f82b..79ea5053ea 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,7 @@ An opinionated list of Python frameworks, libraries, tools, and resources. - [Cryptography](#cryptography) - [Penetration Testing](#penetration-testing) +- [Web Security](#web-security) **Miscellaneous** @@ -1080,6 +1081,12 @@ _Frameworks and tools for penetration testing._ - [sherlock](https://github.com/sherlock-project/sherlock) - Hunt down social media accounts by username across social networks. - [sqlmap](https://github.com/sqlmapproject/sqlmap) - Automatic SQL injection and database takeover tool. +## Web Security + +_Libraries for application-layer web security._ + +- [secure](https://github.com/TypeError/secure) - HTTP security headers for Python web applications with ASGI and WSGI middleware. + **Miscellaneous** ## Hardware