gpt4 book ai didi

python - 如何在 Python 中连接 VPN/Proxy?

转载 作者:太空狗 更新时间:2023-10-29 17:45:19 25 4
gpt4 key购买 nike

我正在尝试抓取网站上的一些页面,但要查看这些页面,我需要连接到 VPN。我的设置如下:

我想在通过 VPN 连接的 pythonanywhere 上运行一个脚本,这样流量就好像来自澳大利亚。

目前我找到的最接近的答案是:

JSoup over VPN/proxy

最佳答案

我看到了 https://www.privateinternetaccess.com/可以选择使用 SOCKS5 代理。如果您使用请求模块进行抓取,您可以像这样使用 SOCKS5:

pip install -U requests[socks]

在脚本中:

import requests
proxies = {'http': 'socks5://user:pass@host:port',
'https': 'socks5://user:pass@host:port'}

resp = requests.get('http://example.com', proxies=proxies )

关于python - 如何在 Python 中连接 VPN/Proxy?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35144685/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com