使用Python建立一個簡易的Web Server

    Python 2.x中自帶了SimpleHTTPServer模塊,到Python3.x中,該模塊被合併到了http.server模塊中。使用該模塊,能夠快速建立一個簡易的Web服務器。html

    咱們在C:\Users\%USERNAME%\用戶目錄下,建立一個html目錄,將html/jpg等網頁文件拷貝到該目錄下,啓動一個cmd命令行窗口,進入html目錄,執行以下命令便可建立一個簡易的Web Serverpython

python -m http.server 8888

 

01-使用python建立一個簡單的Web Server1.jpg安全

 01-使用python建立一個簡單的Web Server1.jpg

02-使用python建立一個簡單的Web Server.jpgbash

 02-使用python建立一個簡單的Web Server.jpg

    使用代碼啓動的示例:服務器

 

import http.server
import socketserver
 
PORT = 8000
 
Handler = http.server.SimpleHTTPRequestHandler
 
with socketserver.TCPServer(("", PORT), Handler) as httpd:
    print("serving at port", PORT)
    httpd.serve_forever()

 

03-使用代碼建立一個簡單的Web Server.jpgsocket

 03-使用代碼建立一個簡單的Web Server.jpg

 

注意事項:ide

1Python 3.7版本新增的功能,能夠在命令行使用-d參數,指定Web服務器的根目錄位置,spa

python -m http.server 8888 -d ./html

 

04- -d 和目錄參數,建立一個簡單的Web Server命令行

 04-帶 -d 和目錄參數,建立一個簡單的Web Server.jpg

 

2官方的警告:「不推薦在生產環境中使用 http.server。它只實現了基本的安全檢查功能。」server

 

參考連接:

HTTP 服務器

https://docs.python.org/zh-cn/3/library/http.server.html

https://docs.python.org/2/library/simplehttpserver.html

相關文章
相關標籤/搜索