saepy备忘
PY自己用的
saepy
import sae
def app(environ, start_response):
status = '200 OK'
response_headers = [('Content-type', 'text/html; charset=utf-8')]
start_response(status, response_headers)
s=str(environ)+str(start_response)
return ['<strong>Welcome to SAE!'+s+'</strong>']
application = sae.create_wsgi_app(app)