From 7b536fa7164530f84683a9daae04c59009691941 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Fri, 10 Jun 2016 11:55:15 -0500 Subject: see how a code example looks in the readme --- README.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'README.rst') 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 `_. Support and Documentation -- cgit v1.2.3 From 2b8c7d5e418b2d5df0e05508ae9c17168b30f28d Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Wed, 6 Jul 2016 22:05:34 -0500 Subject: link to hacking and contributing --- README.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'README.rst') diff --git a/README.rst b/README.rst index 35c335d9c..6ef75e899 100644 --- a/README.rst +++ b/README.rst @@ -50,9 +50,10 @@ for documentation, reporting bugs, and getting support. Developing and Contributing --------------------------- -See ``HACKING.txt`` and ``contributing.md`` for guidelines for running tests, -adding features, coding style, and updating documentation when developing in or -contributing to Pyramid. +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 ------- -- cgit v1.2.3