summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst24
1 files changed, 21 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index a9e38f636..6ef75e899 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
@@ -33,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 <https://github.com/Pylons/pyramid/blob/master/HACKING.txt>`_ and
+`contributing.md <https://github.com/Pylons/pyramid/blob/master/contributing.md>`_
+for guidelines on running tests, adding features, coding style, and updating
+documentation when developing in or contributing to Pyramid.
License
-------