diff options
| author | Michael Merickel <michael@merickel.org> | 2016-06-10 11:55:15 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2016-06-10 11:55:15 -0500 |
| commit | 7b536fa7164530f84683a9daae04c59009691941 (patch) | |
| tree | 78869c8fe04adefb261a89d929d38b1add9afb4c /README.rst | |
| parent | a34127c5d95093252d9a0d0c419ff18e914a6c71 (diff) | |
| download | pyramid-7b536fa7164530f84683a9daae04c59009691941.tar.gz pyramid-7b536fa7164530f84683a9daae04c59009691941.tar.bz2 pyramid-7b536fa7164530f84683a9daae04c59009691941.zip | |
see how a code example looks in the readme
Diffstat (limited to 'README.rst')
| -rw-r--r-- | README.rst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/README.rst b/README.rst index a9e38f636..35c335d9c 100644 --- a/README.rst +++ b/README.rst @@ -21,6 +21,23 @@ Pyramid 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 |
