benoitc/gunicorn

gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 19 minutes ago
Added to GitGenius on September 5th, 2026
Created on November 30th, 2009
Open Issues & Pull Requests: 110 (+0)
GitHub issues: Enabled
Number of forks: 1,858
Total Stargazers: 10,663 (+0)
Total Subscribers: 217 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 38.6 hours
Mean response time: 104.7 days
90th percentile: 406.1 days
Tracked items: 222

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 94% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Only 5% of issues opened in the past year have been closed. Three people close 85% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 33
New in 7 days: 0
Closed in 7 days: 3
Avg open age: 895 days
Stale 30+ days: 24
Stale 90+ days: 24

Recent activity

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

Top labels

  • Investigation (11)
  • bug :( (8)
  • Feedback Requested (7)
  • To Review (7)
  • Waiting for feedback (6)
  • Feature/Core (5)
  • Discussion (3)
  • Feature/Http (3)

Detailed Description

Gunicorn is a WSGI HTTP server for Python applications on UNIX systems.

Gunicorn solves the problem of running Python web applications in production by providing a lightweight, efficient application server. It uses a pre-fork worker model ported from Ruby's Unicorn project, spawning multiple worker processes to handle concurrent requests. This architecture allows the server to manage long-running or blocking operations without starving other requests, making it suitable for both fast clients and applications with slower response times.

Developers should choose Gunicorn if they are deploying WSGI-based frameworks like Django, Flask, or Pyramid, or ASGI applications such as FastAPI or Starlette. The tool is broadly compatible with various Python web frameworks and requires minimal configuration to get started. It offers multiple worker types including sync, gthread, gevent, and asgi to match different application characteristics. The project includes HTTP/2 support in beta and a Dirty Arbiters feature for handling heavy workloads involving machine learning models or long-running tasks. Gunicorn also supports the uWSGI binary protocol for integration with nginx reverse proxies.

The project maintains active community engagement through GitHub issues, an IRC channel on Libera.Chat, and documented contribution guidelines. Development includes regular feature additions such as per-app worker allocation and HTTP/2 support, indicating ongoing evolution to meet modern deployment needs. The maintainers explicitly seek financial support from users running Gunicorn in production, reflecting the volunteer-driven nature of the project's maintenance.