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)
回复列表(0|隐藏机器人聊天)
帖子没有回复
添加新回复
回复需要登录