Skip to content

Instantly share code, notes, and snippets.

@gcarothers
Forked from anonymous/usepyramid.rst
Last active August 29, 2015 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gcarothers/10678394 to your computer and use it in GitHub Desktop.
Save gcarothers/10678394 to your computer and use it in GitHub Desktop.

Use Pyramid

Install

If you don't have the latest and greatest Python install it from Python.org

In a terminal:

$ pyvenv myproject
$ cd myproject
$ bin/pip install pyramid

Create Application

Open app.py in your editor:

from pyramid.config import Configurator
from pyramid.response import Response

from wsgiref.simple_server import make_server

def hello_world(request):
    return Response('Hello %(name)s!' % request.matchdict)

def create_app():
    config = Configurator()
    config.add_route('hello', '/hello/{name}')
    config.add_view(hello_world, route_name='hello')
    app = config.make_wsgi_app()
    return app

if __name__ == '__main__':
    app = create_app()
    server = make_server('0.0.0.0', 8080, app)
    server.serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment