zeromq/pyzmq

PyZMQ: Python bindings for zeromq

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 1 hour ago
Added to GitGenius on September 16th, 2026
Created on July 21st, 2010
Open Issues & Pull Requests: 60 (+0)
GitHub issues: Enabled
Number of forks: 666
Total Stargazers: 4,176 (+0)
Total Subscribers: 100 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 6.7 hours
Mean response time: 25.6 days
90th percentile: 36.2 days
Tracked items: 63

Most active contributors

Sign in to see contributor activity.

How this project is maintained

95% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Three people close 83% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 21
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 735 days
Stale 30+ days: 21
Stale 90+ days: 19

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • question (4)
  • not pyzmq (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

PyZMQ is a Python binding for ZeroMQ that provides access to the ZeroMQ messaging library from Python code.

PyZMQ solves the problem of integrating ZeroMQ's high-performance messaging capabilities into Python applications. ZeroMQ is a distributed messaging system that handles asynchronous communication patterns, and PyZMQ wraps this C library to expose its functionality through Python APIs. The bindings are implemented using Cython, which allows efficient communication between Python and the underlying ZeroMQ library while maintaining the performance characteristics of the C implementation.

Developers should choose PyZMQ when building Python applications that require robust, scalable messaging infrastructure. It suits projects needing asynchronous communication patterns such as request-reply, publish-subscribe, or push-pull architectures. The tool is particularly valuable for distributed systems, microservices, and real-time data processing pipelines where message throughput and latency matter. PyZMQ is the standard way to access ZeroMQ from Python, making it the natural choice for Python developers already committed to the ZeroMQ ecosystem.

The project maintains active development with regular updates to keep pace with ZeroMQ releases and Python language evolution. The codebase shows consistent attention to both the Python and Cython layers, ensuring the bindings remain current with upstream changes. Development activity reflects ongoing maintenance of the binding layer itself rather than feature expansion, which is appropriate for a wrapper library focused on stability and compatibility.