[Python]web伺服器總結篇

大搜車-自娛發表於2012-09-13
1.一句話搭建web伺服器,主要用於檔案共享
python -m SimpleHTTPServer [埠]

兩行程式碼的,儲存為Python指令碼執行:

import SimpleHTTPServer
SimpleHTTPServer.test()

預設埠為8000,直接訪問http://localhost:8000即可,根路徑是執行命令或指令碼的資料夾

2.miniWeb.py--BottleWeb框架(一個檔案的WEB伺服器)
[url=http://pynotes.appspot.com/static/bottle/index.htm]中文快速入門[/url]
[url=http://pynotes.appspot.com/static/bottle/docs.htm]中文參考文件[/url]
建議使用,真的比java簡單的多

3.web.py使用人數多,參考資料多
推薦一篇部落格:
http://vvonderblog.appspot.com/2009/11/10/python-web-framework-webpy.html

4.Django

相關文章