Skip to content

Instantly share code, notes, and snippets.

@stevepiercy
Created January 4, 2014 11:37
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 stevepiercy/8254508 to your computer and use it in GitHub Desktop.
Save stevepiercy/8254508 to your computer and use it in GitHub Desktop.
Hello Pyramid - A simple single-file web application using the Pyramid framework
from wsgiref.simple_server import make_server
from pyramid.config import Configurator
from pyramid.response import Response
def hello_world(request):
return Response('<h1>Hello World!</h1>')
if __name__ == '__main__':
config = Configurator()
config.add_route('hello', '/')
config.add_view(hello_world, route_name='hello')
app = config.make_wsgi_app()
server = make_server('0.0.0.0', 6543, app)
server.serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment