91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python 編寫簡單網頁服務器的實例

發布時間:2020-08-23 00:43:50 來源:腳本之家 閱讀:253 作者:煙雨流年 欄目:開發技術

IDE:Pycharm

sever.py

#!/bin/python
#-*- coding: UTF-8 -*-
#文件名:server.py
#create by wzh 2017/10/26
import socket #導入socket模塊
import re
from multiprocessing import Process #導入進程模塊
#設置靜態文件根目錄
HTML_ROOT_DIR='./html'
def handle_client(client_socket):
 """處理客戶端連接請求"""
 request_data=client_socket.recv(1024)
 print(request_data)
 request_lines=request_data.splitlines()
 for line in request_lines:
  print(line)
 #'GET / HTTP/1.1'
 request_start_line=request_lines[0].decode("utf-8")
 print("*"*10)
 print(request_start_line)
 #提取用戶請求的文件名
 file_name=re.match(r"\w+ +(/[^ ]*) ",str(request_start_line)).group(1)
 if "/" == file_name:
  file_name='/index.html'
 #打開文件,讀取內容
 try:
  file=open(HTML_ROOT_DIR+file_name,"rb")
 except IOError:
  response_start_line="HTTP/1.1 404 Not Found\r\n"
  response_heads="Server: My server\r\n"
  response_body="The file not found!"
 else:
  file_data=file.read()
  file.close()
  response_start_line="HTTP/1.1 200 ok\r\n"
  response_heads="Server: My server\r\n"
  response_body=file_data.decode("utf-8")
 response=response_start_line+response_heads+"\r\n"+response_body
 print("response data:",response)
 client_socket.send(bytes(response,"utf-8"))
 client_socket.close()
if __name__=="__main__":   #如果直接運行本文件,那么__name__為__main__(此時才運行下面的程序),否則為對應包名
 s = socket.socket(socket.AF_INET,socket.SOCK_STREAM) # 創建socket對象
 s.setsockopt(socket.SOL_SOCKET,socket.SO_REUSEADDR,1)
 #host = socket.gethostname() # 獲取本地主機名
 port = 1212 #
 #print(host)
 s.bind(("", port)) # 綁定端口
 s.listen(5)
 while True:
  c,addr=s.accept() #建立客戶端連接
  print('連接地址',addr)
  handle_client_process=Process(target=handle_client,args=(c,)) #ALT+ENTER快捷鍵生成函數
  handle_client_process.start()
  c.close()

index.html

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>My Web</title>
</head>
<h2 align="center">welcome!</h2>
<p align="center">這是一個神奇的網站!</p>
<body>
</body>
</html>

運行server.py

在瀏覽器中輸入localhost:1212

以上這篇python 編寫簡單網頁服務器的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

郸城县| 武功县| 三明市| 格尔木市| 古丈县| 三门县| 依兰县| 文安县| 长宁县| 吕梁市| 平舆县| 伊金霍洛旗| 稻城县| 高陵县| 双城市| 海盐县| 商城县| 得荣县| 团风县| 东莞市| 大埔县| 开封市| 赣州市| 封开县| 昌邑市| 囊谦县| 绥阳县| 含山县| 海盐县| 巫山县| 龙里县| 闽清县| 钟山县| 长葛市| 磴口县| 雷波县| 宝丰县| 千阳县| 普兰店市| 江孜县| 通许县|