uwsgi, wsgi协议的一个很好的实现,源码在这里:https://github.com/unbit/uwsgi c语言编写,有兴趣可以研究下. 上DEMO: wsgi_server.py def application(env, start_response): start_response('200 OK', [('Content-Type', 'text/html')]) return 'hello world' 应用: 使用uwsgi部署以上应用: uwsgi --http 0.0.…