• Getting Started With WSGI
  • 前言
  • 1. 基础知识
    • 1.1. 什么是 HTTP
    • 1.2. Python相关知识
  • 2. CGI Basic
    • 2.1. Prepare
    • 2.2. Hello World
    • 2.3. Debug
    • 2.4. stderr
    • 2.5. Environ
    • 2.6. GET/POST
  • 3. WSGI基础
    • 3.1. Component
    • 3.2. WorkFlow
    • 3.3. APP
    • 3.4. Middleware
  • 4. Webob
  • 5. Routes
  • 6. PasteDeploy
  • 7. WSGI Framework
    • 7.1. flask
    • 7.2. pecan
  • 8. 参考资料
Powered by GitBook

Getting Started With WSGI

参考资料

HTTP协议详解: http://blog.csdn.net/gueter/article/details/1524447

CGI: http://en.wikipedia.org/wiki/Common_Gateway_Interface

cgitb: https://docs.python.org/2.6/library/cgitb.html

PEP 333 - Python Web Server Gateway Interface v1.0 https://www.python.org/dev/peps/pep-0333/