web包下載路徑:python
http://webpy.org/static/web.py-0.37.tar.gz
下載以後解壓:將目錄文件夾下的web文件夾拷貝到你的python項目路徑下web
以後新建一個hello_web.py文件:app
''' Created on 2014-2-27 @author: Administrator ''' import web urls = ("/.*", "hello") app = web.application(urls, globals()) class hello: def GET(self): return 'Hello, world!' if __name__ == "__main__": app.run()
以後運行,在網頁端輸入:http://localhost:8080/hellourl
運行結果:code
在網頁中顯示:get
Hello, world!