python3搭建web伺服器

2021-09-27 11:30:36 字數 2454 閱讀 7652

傳送http請求

print(html)伺服器

'''伺服器內部錯誤'''

# 這裡要處理兩個異常,乙個是讀入路徑時可能出現的異常,乙個是讀入路徑後若不是檔案,要作為異常處理

# try:

# # 獲取檔案路徑

# full_path = os.getcwd() + self.path

# # 如果路徑不存在

# if not os.path.exists(full_path):

# raise serverexception("'' not found".format(self.path))

# # 如果該路徑是乙個檔案

# elif os.path.isfile(full_path):

# self.handle_file(full_path)

# # 如果該路徑不是乙個檔案

Python3搭建http伺服器

在本機搭建web伺服器其實也有更簡單的方法,可以利用iis功能。可以自行搜尋本機iis搭建web伺服器。不用寫 windows自帶的web伺服器功能。python2提供了basehttpserver模組,不過在py3把它合併到了http.server中。老教材用basehttpserver你可以直接...

python3實現微型的web伺服器

實驗目的 用socket 模擬乙個微型的web伺服器,當py指令碼run起後,實微型web server架起了,然後用本地瀏覽器訪問127.0.0.1 8080 web server的ip port 時web伺服器就會將網頁內容傳給瀏覽器,實現網頁瀏覽.sw sys python3.7.2 wind...

伺服器配置python3

wget1.解壓 接著輸入 mkdir python 回到頂級目錄 然後輸入 mv python 3.7.2.tar.xz home python 這樣就把python的壓縮包移動到了我們新建的python資料夾中 接著需要進入到新建的python資料夾 輸入 cd home python 進入到資...