All Projects → Pylons → Pyramid

Pylons / Pyramid

Licence: other
Pyramid - A Python web framework

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Pyramid

Clastic
🏔️ A functional web framework that streamlines explicit development practices while eliminating global state.
Stars: ✭ 131 (-96.38%)
Mutual labels:  web-framework, wsgi
Flask bestpractices
Flask最佳实践
Stars: ✭ 100 (-97.23%)
Mutual labels:  web-framework, wsgi
Serverless Wsgi
Serverless plugin to deploy WSGI applications (Flask/Django/Pyramid etc.) and bundle Python packages
Stars: ✭ 377 (-89.57%)
Mutual labels:  pyramid, wsgi
Flask
The Python micro framework for building web applications.
Stars: ✭ 57,408 (+1488.05%)
Mutual labels:  web-framework, wsgi
Macaron
Package macaron is a high productive and modular web framework in Go.
Stars: ✭ 3,233 (-10.57%)
Mutual labels:  web-framework
Echox
Echo cookbook and website
Stars: ✭ 275 (-92.39%)
Mutual labels:  web-framework
Doggy
Lightweight, idiomatic and stable for building Go 1.7+ HTTP services
Stars: ✭ 268 (-92.59%)
Mutual labels:  web-framework
Jupiter
Jupiter是斗鱼开源的面向服务治理的Golang微服务框架
Stars: ✭ 3,455 (-4.43%)
Mutual labels:  web-framework
Gramework
Fast and Reliable Golang Web Framework
Stars: ✭ 354 (-90.21%)
Mutual labels:  web-framework
Joy
A full stack web framework written in janet
Stars: ✭ 327 (-90.95%)
Mutual labels:  web-framework
Ramses
RAML + Elasticsearch / Postgres / Mongodb / Your Data Store™ + Pyramid = RESTful API
Stars: ✭ 301 (-91.67%)
Mutual labels:  pyramid
Shio Rs
Shio is a fast, simple, and asynchronous micro web-framework for Rust.
Stars: ✭ 276 (-92.37%)
Mutual labels:  web-framework
Ofbiz Framework
Apache OFBiz is an open source product for the automation of enterprise processes. It includes framework components and business applications for ERP, CRM, E-Business/E-Commerce, Supply Chain Management and Manufacturing Resource Planning. OFBiz provides a foundation and starting point for reliable, secure and scalable enterprise solutions.
Stars: ✭ 315 (-91.29%)
Mutual labels:  web-framework
Zappa
Serverless Python
Stars: ✭ 224 (-93.8%)
Mutual labels:  pyramid
Shiro
Apache Shiro
Stars: ✭ 3,685 (+1.94%)
Mutual labels:  web-framework
Sihl
A modular functional web framework
Stars: ✭ 267 (-92.61%)
Mutual labels:  web-framework
Phoenix
Peace of mind from prototype to production
Stars: ✭ 17,476 (+383.43%)
Mutual labels:  web-framework
Centurion
Centurion is a web-based framework for rapid prototyping and building larger web projects.
Stars: ✭ 327 (-90.95%)
Mutual labels:  web-framework
Kite
Micro-service framework in Go
Stars: ✭ 3,105 (-14.11%)
Mutual labels:  web-framework
Kemal
Fast, Effective, Simple Web Framework
Stars: ✭ 3,227 (-10.73%)
Mutual labels:  web-framework

Pyramid

master Travis CI Status master Documentation Status IRC Libera.Chat

Pyramid is a small, fast, down-to-earth, open source Python web framework. It makes real-world web application development and deployment more fun, more predictable, and more productive.

from wsgiref.simple_server import make_server
from pyramid.config import Configurator
from pyramid.response import Response

def hello_world(request):
    return Response('Hello World!')

if __name__ == '__main__':
    with Configurator() as config:
        config.add_route('hello', '/')
        config.add_view(hello_world, route_name='hello')
        app = config.make_wsgi_app()
    server = make_server('0.0.0.0', 6543, app)
    server.serve_forever()

Pyramid is a project of the Pylons Project.

Support and Documentation

See Pyramid Support and Development for documentation, reporting bugs, and getting support.

Developing and Contributing

See HACKING.txt and contributing.md for guidelines on running tests, adding features, coding style, and updating documentation when developing in or contributing to Pyramid.

License

Pyramid is offered under the BSD-derived Repoze Public License.

Authors

Pyramid is made available by Agendaless Consulting and a team of contributors.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].