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ù)器