pylons/pyramid

Pyramid - A Python web framework

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 53 minutes ago
Added to GitGenius on September 10th, 2026
Created on October 24th, 2010
Open Issues & Pull Requests: 89 (+0)
GitHub issues: Enabled
Number of forks: 891
Total Stargazers: 4,099 (+0)
Total Subscribers: 157 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 2.1 hours
Mean response time: 26.3 days
90th percentile: 54.0 days
Tracked items: 14

How this project is maintained

Around half of the issues opened in the past year never receive a reply. Only 2% of issues opened in the past year have been closed. Three people close 70% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 8
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 1,714 days
Stale 30+ days: 7
Stale 90+ days: 7

Recent activity

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

Top labels

  • bugs (2)
  • docs (1)
  • sprintable (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Pyramid is a Python web framework that emphasizes being small, fast, and straightforward for building real-world web applications.

Pyramid addresses the need for a web framework that balances simplicity with power, allowing developers to start small and add complexity only when needed. It operates as a WSGI-based framework where applications are configured through a Configurator object that registers routes and views, then generates a WSGI application. This approach keeps the core minimal while remaining extensible through add-ons.

Pyramid suits developers who want explicit control over their application structure without the opinionated constraints of heavier frameworks. It works well for projects ranging from simple APIs to complex web applications, and its small core makes it appropriate when you need predictability and don't want to fight framework conventions. The framework is particularly valuable for teams that prioritize clarity in how requests map to handlers and appreciate having multiple ways to accomplish tasks rather than one prescribed way.

The project maintains active development with continuous integration testing and documentation builds. Community support is available through Discord and IRC channels. The codebase includes clear contribution guidelines in dedicated documentation files, and the project accepts external contributions with established processes for testing and code style standards.