A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

10 行
253 B

  1. #! /usr/bin/env python
  2. def myapp(environ, start_response):
  3. start_response('200 OK', [('Content-Type', 'text/plain')])
  4. return ['Hello World!\n']
  5. if __name__ == "__main__":
  6. from flup.server.fcgi import WSGIServer
  7. WSGIServer(myapp).run()