溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python編程如何獲取終端命令行參數(shù)

發(fā)布時(shí)間:2022-06-18 09:40:34 來源:億速云 閱讀:534 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹了Python編程如何獲取終端命令行參數(shù)的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇Python編程如何獲取終端命令行參數(shù)文章都會(huì)有所收獲,下面我們一起來看看吧。

實(shí)現(xiàn)步驟

獲取終端命令行參數(shù),通過使用 sys.argv實(shí)現(xiàn)

1.導(dǎo)入sys模塊

import sys

2.獲取命令行參數(shù)

params = sys.argv
print(params)
print(params[1])

獲取到的為字符串類型,可能需要轉(zhuǎn)換類型再使用

命令行啟動(dòng)動(dòng)態(tài)綁定端口號(hào)

1.獲取執(zhí)行python程序的終端命令行參數(shù)

 sys.argv

2.判斷參數(shù)的類型,設(shè)置端口號(hào)必須是整型

 if not sys.argv[1].isdigit():
     print("啟動(dòng)命令如下: python3 xxx.py 9090")
     return
 port = int(sys.argv[1])

3.給Web服務(wù)器類的初始化方法添加一個(gè)端口號(hào)參數(shù),用于綁定端口號(hào)

 def __init__(self, port):
     self.tcp_server_socket.bind((“”, port))

代碼實(shí)現(xiàn)

import socket
import threading
import sys
# 定義web服務(wù)器類
class HttpWebServer(object):
    def __init__(self, port):
        # 創(chuàng)建tcp服務(wù)端套接字
        tcp_server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        # 設(shè)置端口號(hào)復(fù)用, 程序退出端口立即釋放
        tcp_server_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, True)
        # 綁定端口號(hào)
        tcp_server_socket.bind(("", port))
        # 設(shè)置監(jiān)聽
        tcp_server_socket.listen(128)
        # 保存創(chuàng)建成功的服務(wù)器套接字
        self.tcp_server_socket = tcp_server_socket
    # 處理客戶端的請(qǐng)求
    @staticmethod
    def handle_client_request(new_socket):
        # 代碼執(zhí)行到此,說明連接建立成功
        recv_client_data = new_socket.recv(4096)
        if len(recv_client_data) == 0:
            print("關(guān)閉瀏覽器了")
            new_socket.close()
            return
        # 對(duì)二進(jìn)制數(shù)據(jù)進(jìn)行解碼
        recv_client_content = recv_client_data.decode("utf-8")
        print(recv_client_content)
        # 根據(jù)指定字符串進(jìn)行分割, 最大分割次數(shù)指定2
        request_list = recv_client_content.split(" ", maxsplit=2)
        # 獲取請(qǐng)求資源路徑
        request_path = request_list[1]
        print(request_path)
        # 判斷請(qǐng)求的是否是根目錄,如果條件成立,指定首頁數(shù)據(jù)返回
        if request_path == "/":
            request_path = "/index.html"
        try:
            # 動(dòng)態(tài)打開指定文件
            with open("static" + request_path, "rb") as file:
                # 讀取文件數(shù)據(jù)
                file_data = file.read()
        except Exception as e:
            # 請(qǐng)求資源不存在,返回404數(shù)據(jù)
            # 響應(yīng)行
            response_line = "HTTP/1.1 404 Not Found\r\n"
            # 響應(yīng)頭
            response_header = "Server: PWS1.0\r\n"
            with open("static/error.html", "rb") as file:
                file_data = file.read()
            # 響應(yīng)體
            response_body = file_data
            # 拼接響應(yīng)報(bào)文
            response_data = (response_line + response_header + "\r\n").encode("utf-8") + response_body
            # 發(fā)送數(shù)據(jù)
            new_socket.send(response_data)
        else:
            # 響應(yīng)行
            response_line = "HTTP/1.1 200 OK\r\n"
            # 響應(yīng)頭
            response_header = "Server: PWS1.0\r\n"
            # 響應(yīng)體
            response_body = file_data
            # 拼接響應(yīng)報(bào)文
            response_data = (response_line + response_header + "\r\n").encode("utf-8") + response_body
            # 發(fā)送數(shù)據(jù)
            new_socket.send(response_data)
        finally:
            # 關(guān)閉服務(wù)與客戶端的套接字
            new_socket.close()
    # 啟動(dòng)web服務(wù)器進(jìn)行工作
    def start(self):
        while True:
            # 等待接受客戶端的連接請(qǐng)求
            new_socket, ip_port = self.tcp_server_socket.accept()
            # 當(dāng)客戶端和服務(wù)器建立連接程,創(chuàng)建子線程
            sub_thread = threading.Thread(target=self.handle_client_request, args=(new_socket,))
            # 設(shè)置守護(hù)主線程
            sub_thread.setDaemon(True)
            # 啟動(dòng)子線程執(zhí)行對(duì)應(yīng)的任務(wù)
            sub_thread.start()
# 程序入口函數(shù)
def main():
    print(sys.argv)
    # 判斷命令行參數(shù)是否等于2,
    if len(sys.argv) != 2:
        print("執(zhí)行命令如下: python3 xxx.py 8000")
        return
    # 判斷字符串是否都是數(shù)字組成
    if not sys.argv[1].isdigit():
        print("執(zhí)行命令如下: python3 xxx.py 8000")
        return
    # 獲取終端命令行參數(shù)
    port = int(sys.argv[1])
    # 創(chuàng)建web服務(wù)器對(duì)象
    web_server = HttpWebServer(port)
    # 啟動(dòng)web服務(wù)器進(jìn)行工作
    web_server.start()
if __name__ == '__main__':
    main()

關(guān)于“Python編程如何獲取終端命令行參數(shù)”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“Python編程如何獲取終端命令行參數(shù)”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI