安裝Python的web.py架構並從hello world開始編程

來源:互聯網
上載者:User
最近有一個小的web項目,想用喜愛都python,但是想到之前接觸過都django我感覺一陣不寒而慄,為什麼?Django的配置太過複雜,而且小項目不太適合MVC的開發模式,所以我將目光轉向了web.py這個小型web架構,並且真正讓我動心都是其官方網站上都一句話:"Django lets you write web apps in Django. TurboGears lets you write web apps in TurboGears. Web.py lets you write web apps in Python." — Adam Atlas

最近切換了Ubuntu替換了Win7系統,所以這裡介紹下Ubuntu都安裝web.py
安裝easy_install

sudo apt-get install python-pip

使用easy_install安裝web.py

sudo easy_install web.py

測試是否安裝成功:

在python shell中執行:

import web

如果沒有報錯則web.py安裝成功. 下面開始我們第一個hello,world

import weburls = ("/.*", "hello")        # 指定任何url都指向hello類app = web.application(urls, globals()) # 綁定url# 定義相應類class hello:def GET(self):return 'Hello, world!'if __name__ == "__main__":app.run()

然後儲存為hello.py並運行它

python hello.py

然後會看到輸出:http://0.0.0.0:8080/

然後瀏覽器訪問:http://localhost:8080即可看到 Hello, world! 我們第一個用python寫的web程式就建立完成.

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.