Skip to content

kikuchiyo/pyramid

This branch is 1848 commits behind Pylons/pyramid:main.

Folders and files

NameName
Last commit message
Last commit date
Jan 26, 2017
Jan 25, 2017
Mar 5, 2015
Jan 8, 2017
Mar 12, 2013
Jan 22, 2017
Dec 14, 2016
Sep 5, 2011
Nov 26, 2016
Jan 22, 2017
Sep 5, 2011
Jan 22, 2017
Jan 24, 2017
Jan 24, 2017
Jan 8, 2017
Nov 26, 2015
Dec 26, 2016
Apr 13, 2015
Aug 16, 2013
Apr 27, 2015
Dec 13, 2016
Nov 14, 2016
Jan 22, 2017
Jan 8, 2017

Repository files navigation

Pyramid

master Travis CI Status Master Documentation Status Latest Documentation Status IRC Freenode

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 %(name)s!' % request.matchdict)

if __name__ == '__main__':
    config = Configurator()
    config.add_route('hello', '/hello/{name}')
    config.add_view(hello_world, route_name='hello')
    app = config.make_wsgi_app()
    server = make_server('0.0.0.0', 8080, 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.

About

Pyramid web framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.3%
  • Other 0.7%