Michael Merickel
2016-06-10 7b536fa7164530f84683a9daae04c59009691941
see how a code example looks in the readme
1 files modified
17 ■■■■■ changed files
README.rst 17 ●●●●● patch | view | raw | blame | history
README.rst
@@ -21,6 +21,23 @@
source Python web framework. It makes real-world web application development
and deployment more fun, more predictable, and more productive.
.. code-block:: python
   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 <http://www.pylonsproject.org/>`_.
Support and Documentation