首页 > 代码库 > Python简单Web框架web.py实例hello world

Python简单Web框架web.py实例hello world

1、安装web.py模块easy_install web.py

2、实现代码

import web
 
urls = (‘/hello‘, ‘hello‘,
       )
 
class hello(object):
    def GET(self):
        return ‘hello world‘
 
if __name__ == "__main__":
    app = web.application(urls, globals())
    app.run()

  

Python简单Web框架web.py实例hello world