在python普遍使用的時(shí)候?qū)τ诜?wù)器等等的建設(shè)也是尤為重要的,那么今天就來(lái)和大家說(shuō)說(shuō)“在python中如何快速建立web服務(wù)?”這個(gè)問(wèn)題吧!希望文章中代碼和思路分享對(duì)大家有所幫助!
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() 按照行(' ', ' ', ')分隔,返回一個(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 " 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 " # 將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()
在文章我們理順了對(duì)于“在python中如何快速建立web服務(wù)?”這個(gè)問(wèn)題的解決方法和相關(guān)代碼的分享,相信對(duì)于大家的搭建是有所幫助的,當(dāng)然關(guān)于python其他方面的內(nèi)容我們也可以在W3Cschool進(jìn)行學(xué)習(xí)和了解!