python bottle web架構簡介

來源:互聯網
上載者:User

標籤:bottle簡介

Bottle 是一個快速,簡單,輕量級的 Python WSGI Web 架構。單一檔案,只依賴 Python 標準庫 。bottle很適合會一點python基礎的人使用,因為這架構用起來很簡單,只要你會python基礎文法,有一點WEB知識,就可以開發出很不錯的WEB。學了python的營運人員,壓根不需要django架構,就可以營運工具了,畢竟django學習起來,比較複雜,學習時間也長,我們有必要一定要使用django嗎?

 

 URL 映射 (Routing): 將 URL 請求映射到 Python 函數,使 URL 更簡潔。

模板 (Templates): 快速且 pythonic 的內建模板引擎 ,同時支援 mako, jinja2 和 cheetah 等模板。

基礎功能 (Utilities): 方便地訪問表單資料,上傳檔案,使用 cookie,查看 HTTP 中繼資料。

程式開發伺服器 (Server): 內建了程式開發伺服器,且支援 paste, fapws3 , bjoern, Google App Engine,cherrypy 等符合 WSGI 標準的 HTTP 伺服器。

 

樣本: “Hello World”

from bottle import route, run@route(‘/hello/:name‘)def index(name=‘World‘):    return ‘<b>Hello %s!</b>‘ % namerun(host=‘localhost‘, port=8080)


將其儲存為 py 檔案並執行,用瀏覽器訪問 http://localhost:8080/hello/world 即可看到效果。就這麼簡
單!


python bottle 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.