Skip to content

Instantly share code, notes, and snippets.

@djoreilly
Last active December 15, 2015 05:29
Show Gist options
  • Save djoreilly/5208933 to your computer and use it in GitHub Desktop.
Save djoreilly/5208933 to your computer and use it in GitHub Desktop.
application layer
from webob import Response
from webob.dec import wsgify
@wsgify
def application(request):
return Response('Hello, welcome to paste \n')
def app_factory(global_config, **local_config):
return application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment