diff options
| author | Amos Latteier <amos@latteier.com> | 2016-06-30 10:17:43 -0700 |
|---|---|---|
| committer | Amos Latteier <amos@latteier.com> | 2016-06-30 10:17:43 -0700 |
| commit | 35209e4ac53520e1159bd8a6b47128f38a75db18 (patch) | |
| tree | 85b0f7e8e3794d8980dd10c10b7e57a862e694aa /README.rst | |
| parent | 3fd41dcb5a94a73f43862f6d5c063af7b54e6ff3 (diff) | |
| parent | bcba92d1b23745d736bdcbc9b799929de382db7b (diff) | |
| download | pyramid-35209e4ac53520e1159bd8a6b47128f38a75db18.tar.gz pyramid-35209e4ac53520e1159bd8a6b47128f38a75db18.tar.bz2 pyramid-35209e4ac53520e1159bd8a6b47128f38a75db18.zip | |
Merge branch 'master' into exception_only
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>`_. |
