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

溫馨提示×

溫馨提示×

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

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

python如何實現簡單http服務器功能

發布時間:2021-04-09 12:42:10 來源:億速云 閱讀:223 作者:小新 欄目:開發技術

這篇文章主要介紹python如何實現簡單http服務器功能,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

背景

寫一個python腳本,實現簡單的http服務器功能:

1.瀏覽器中輸入網站地址:172.20.52.163:20014

2.server接到瀏覽器的請求后,讀取本地的index.html文件的內容,回發給瀏覽器

代碼實現

server.py

#!/usr/bin/python
import socket
import signal
import errno
from time import sleep 
 
 
def HttpResponse(header,whtml):
 f = file(whtml)
 contxtlist = f.readlines()
 context = ''.join(contxtlist)
 response = "%s %d\n\n%s\n\n" % (header,len(context),context)
 return response
 
def sigIntHander(signo,frame):
 print 'get signo# ',signo
 global runflag
 runflag = False
 global lisfd
 lisfd.shutdown(socket.SHUT_RD)
 
strHost = "172.20.52.163"
HOST = strHost #socket.inet_pton(socket.AF_INET,strHost)
PORT = 20014
 
httpheader = '''\
HTTP/1.1 200 OK
Context-Type: text/html
Server: Python-slp version 1.0
Context-Length: '''
 
lisfd = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
lisfd.bind((HOST, PORT))
lisfd.listen(2)
 
signal.signal(signal.SIGINT,sigIntHander)
 
runflag = True
while runflag:
 try:
  confd,addr = lisfd.accept()
 except socket.error as e:
  if e.errno == errno.EINTR:
   print 'get a except EINTR'
  else:
   raise
  continue
 
 if runflag == False:
  break;
 
 print "connect by ",addr
 data = confd.recv(1024)
 if not data:
  break
 print data
 confd.send(HttpResponse(httpheader,'index.html'))
 confd.close()
else:
 print 'runflag#',runflag
 
print 'Done'

index.html

<html>
 <head>
 <title>Python Server</title>
 </head>
 <body>
 <h2>Hello python</h2>
 <p>Welcom to the python world</br>
 </body>
</html>

測試

測試結果:

root@cloud2:~/slp/pythonLearning/socket# ./server_v1.py
connect by  ('172.20.52.110', 6096)
GET / HTTP/1.1
Host: 172.20.52.163:20014
Connection: keep-alive
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
User-Agent: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36
Accept-Encoding: gzip,deflate,sdch
Accept-Language: zh-CN,zh;q=0.8,en;q=0.6

瀏覽器

python如何實現簡單http服務器功能

以上是“python如何實現簡單http服務器功能”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

西贡区| 古交市| 荥经县| 额尔古纳市| 赤峰市| 湘潭县| 昌宁县| 汤阴县| 济南市| 汉寿县| 五河县| 繁昌县| 永昌县| 嘉峪关市| 临江市| 吴桥县| 洪湖市| 黄骅市| 德昌县| 吴忠市| 双牌县| 定安县| 太仆寺旗| 宁强县| 三都| 蛟河市| 桐城市| 巫溪县| 翁源县| 治多县| 鄱阳县| 吴忠市| 长兴县| 明水县| 长治市| 齐齐哈尔市| 故城县| 泰安市| 阳曲县| 宜都市| 扬州市|