No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

run.py 269B

1234567
  1. from werkzeug.wrappers import Response
  2. def application(environ, start_response):
  3. request = Request(environ)
  4. text = 'Hello %s!' % request.args.get('name', 'World')
  5. response = Response(text, mimetype='text/plain')
  6. return response(environ, start_response)