基本上我想做的是在我能夠瀏覽互聯(lián)網(wǎng)的同時能夠連接到代理這是我試過的代碼import webbrowserimport socks, socket, requestsfrom multiprocessing import Processdef proxy(): while True: socks.set_default_proxy(socks.SOCKS5, "184.32.91.92", 2901) socket.socket = socks.socksocketif __name__ == '__main__': proxy_process = Process(target=proxy).start() r = requests.get("http://icanhazip.com") print(r.content) # stil gives me my actual IP address webbrowser.open("http://icanhazip.com", new=2) # opening the webbrowser所以我嘗試處理代理以保持連接有效但即使我打開瀏覽器它仍然給我我的實際 IP
在python中打開瀏覽器時如何使用代理
月關(guān)寶盒
2022-12-14 21:02:00