发表于 2019-04-15 字数统计: 21pip install uwsgi123def application(env, start_response): start_response('200 OK', [('Content-Type','text/html')]) return [b"Hello World"]———— The End ————