
WSGI
文章平均质量分 79
double12gzh
http://gzh.readthedocs.io
展开
-
past.deploy
下面这个博客写的很不错 http://www.choudan.net/2013/12/09/OpenStack-WSGI-APP%E5%AD%A6%E4%B9%A0.html转载 2016-10-05 10:29:12 · 463 阅读 · 0 评论 -
WSGI 简介
WSGI 简介 背景 Python Web 开发中,服务端程序可以分为两个部分,一是服务器程序,二是应用程序。前者负责把客户端请求接收,整理,后者负责具体的逻辑处理。为了方便应用程序的开发,我们把常用的功能封装起来,成为各种Web开发框架,例如 Django, Flask, Tornado。不同的框架有不同的开发方式,但是无论如何,开发出的应用程序都要和服务器程序配合,才能为用户提转载 2016-10-06 10:15:21 · 534 阅读 · 0 评论 -
WSGI小程序
模拟openstack中的WSGI,先看一下运行过程中的调用顺序: [root@jeguan-ctrl-01 WSGI]# python wsgi.py Router app_factory Router __init__ Router __call__ Router _dispatch Router match = {'action': u'getMessage', 'controller'原创 2017-02-15 21:04:57 · 600 阅读 · 0 评论