summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2016-07-01 01:41:42 +0200
committerChris McDonough <chrism@plope.com>2016-07-01 01:41:42 +0200
commitd350714a917b1a06dd4be6092e7b3da64771a4af (patch)
tree80c26cdd036093d312c2017c85eb05f94f19692c /README.rst
parent88d40ca6a84920d4c36b7a3be1cf3b46a6375f4e (diff)
parentbcba92d1b23745d736bdcbc9b799929de382db7b (diff)
downloadpyramid-d350714a917b1a06dd4be6092e7b3da64771a4af.tar.gz
pyramid-d350714a917b1a06dd4be6092e7b3da64771a4af.tar.bz2
pyramid-d350714a917b1a06dd4be6092e7b3da64771a4af.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst31
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>`_.