最简的Python Web框架 CherryPy

openkk 13年前

用于 Python 的 CherryPy 应用程序框架,与普通公共网关接口 (CGI) 相比,使得 Web 应用程序更易于编写。同时,它简单 —— 不是充满不常用的功能 - 并且易于学会。

import cherrypy  class HelloWorld(object):      def index(self):          return "Hello World!"      index.exposed = True    cherrypy.quickstart(HelloWorld())

项目主页:http://www.open-open.com/lib/view/home/1329317431687