主頁(yè) > 知識(shí)庫(kù) > python建立web服務(wù)的實(shí)例方法

python建立web服務(wù)的實(shí)例方法

熱門(mén)標(biāo)簽:電話機(jī)器人貸款詐騙 電話外呼系統(tǒng)招商代理 廣東旅游地圖標(biāo)注 蘇州人工外呼系統(tǒng)軟件 淮安呼叫中心外呼系統(tǒng)如何 打印谷歌地圖標(biāo)注 京華圖書(shū)館地圖標(biāo)注 佛山通用400電話申請(qǐng) 看懂地圖標(biāo)注方法

1、說(shuō)明

(1)有時(shí)候我們需要一種簡(jiǎn)單快捷的方法來(lái)建立RPC服務(wù)。只需讓程序B調(diào)用程序A。

(2)不需要知道任何關(guān)于這一點(diǎn)的技術(shù),但我們只需要這么簡(jiǎn)單的東西。我們可以使用一個(gè)協(xié)議(相應(yīng)的Python庫(kù)實(shí)現(xiàn)SimpleXMLRPCServer)來(lái)處理這種事情。

2、實(shí)例

from SimpleXMLRPCServer import SimpleXMLRPCServer
 
def file_reader(file_name):
    with open(file_name, 'r') as f:
        return f.read()
 
server = SimpleXMLRPCServer(('localhost', 8000))
server.register_introspection_functions()
 
server.register_function(file_reader)
 
server.serve_forever()

實(shí)例擴(kuò)展:

Python 實(shí)現(xiàn)一個(gè)簡(jiǎn)單的web服務(wù)器

import re
import socket
 
 
def service_cilent(new_socket):
  request = new_socket.recv(1024).decode("utf-8")
  # Python splitlines() 按照行('\r', '\r\n', \n')分隔,返回一個(gè)包含各行作為元素的列表,如果參數(shù) keepends 為 False,不包含換行符,如果為 True,則保留換行符。
  request_lines = request.splitlines()
  print(request_lines)
  file_name = ""
  ret = re.match(r"[^/]+(/[^ ]*)", request_lines[0])
  if ret:
    file_name = ret.group(1)
    if file_name == "/":
      file_name = "index.html"
  try:
    f = open(file_name, "rb")
  except:
    response = "HTTP/1.1 404 NOT FOUND\r\n\r\n"
    response += "------file not found-----"
    new_socket.send(response.encode("utf-8"))
  else:
    # 打開(kāi)文件成功就讀文件 然后關(guān)閉文件指針
    html_content = f.read()
    f.close()
    # 準(zhǔn)備發(fā)送給瀏覽器的數(shù)據(jù)---header
    response = "HTTP/1.1 200 OK\r\n\r\n"
    # 將response header發(fā)送給瀏覽器
    new_socket.send(response.encode("utf-8"))
    # 將response body發(fā)送給瀏覽器
    new_socket.send(html_content)
  # 關(guān)閉套接字
  new_socket.close()
 
 
def main():
  # 創(chuàng)建套接字
  tcp_server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  # tcp_server_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
  # 綁定
  tcp_server_socket.bind(("", 7089))
  # 監(jiān)聽(tīng)套接字
  tcp_server_socket.listen(128)
  while True:
    new_socket, cilent_addr = tcp_server_socket.accept()
    service_cilent(new_socket)
  # 關(guān)閉監(jiān)聽(tīng)套接字
  tcp_server_socket.close()
 
 
if __name__ == '__main__':
  main()

到此這篇關(guān)于python建立web服務(wù)的實(shí)例方法的文章就介紹到這了,更多相關(guān)python如何建立web服務(wù)內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • 使用Python FastAPI構(gòu)建Web服務(wù)的實(shí)現(xiàn)
  • Python Tornado實(shí)現(xiàn)WEB服務(wù)器Socket服務(wù)器共存并實(shí)現(xiàn)交互的方法
  • python3實(shí)現(xiàn)微型的web服務(wù)器
  • python實(shí)現(xiàn)靜態(tài)web服務(wù)器
  • Python Web程序搭建簡(jiǎn)單的Web服務(wù)器

標(biāo)簽:湖州 江蘇 駐馬店 衡水 股票 畢節(jié) 中山 呼和浩特

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《python建立web服務(wù)的實(shí)例方法》,本文關(guān)鍵詞  python,建立,web,服務(wù),的,實(shí)例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《python建立web服務(wù)的實(shí)例方法》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于python建立web服務(wù)的實(shí)例方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章