1. 程式人生 > >Python簡單Web框架web.py實例hello world

Python簡單Web框架web.py實例hello world

brush main 安裝 self name globals bject pytho log

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