web.py安裝與helloworld

1.web.py安裝(windows)python

下載:http://webpy.org/static/web.py-0.37.tar.gzweb

安裝:windows

(1).首先肯定已經安裝python並設置好環境變量瀏覽器

(2).打開cmd,cd到剛下載文件的目錄下D:\python_tool\web.py-0.37\web.py-0.37app

(3).輸入python setup.py installurl

2.hello worldcode

(1)新建helloworld.py,編寫以下代碼並保存blog

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

(2)運行,python helloworld.pycmd

 (3)打開瀏覽器查看io

相關文章
相關標籤/搜索