摘要: cherrypy 是一个小型web框架,可以用来做一点小型玩具程序。最近闲的无聊,拿来学习一下.hello world 应用hello.py:import cherrypyimport os.pathcurrent_dir = os.path.dirname(os.path.abspath(__file__))class Hello(object): content = """hello hello world """ @cherrypy.expose def index(self): # define the defaul... 阅读全文
posted @ 2013-12-03 15:02 jaw-crusher 阅读(341) 评论(0) 推荐(0)