diff options
Diffstat (limited to 'README.rst')
| -rw-r--r-- | README.rst | 31 |
1 files changed, 24 insertions, 7 deletions
diff --git a/README.rst b/README.rst index dec7e03d0..35c335d9c 100644 --- a/README.rst +++ b/README.rst @@ -17,11 +17,28 @@ Pyramid :target: https://webchat.freenode.net/?channels=pyramid :alt: 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. +`Pyramid <https://trypyramid.com/>`_ 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. -Pyramid is produced by the `Pylons Project <http://pylonsproject.org/>`_. +.. 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 ------------------------- @@ -46,6 +63,6 @@ Pyramid is offered under the BSD-derived `Repoze Public License Authors ------- -Pyramid is made available by `Agendaless Consulting <http://agendaless.com>`_ -and a team of contributors. - +Pyramid is made available by `Agendaless Consulting <https://agendaless.com>`_ +and a team of `contributors +<https://github.com/Pylons/pyramid/graphs/contributors>`_. |
