如何通过代理发送数据包?

发布于 2024-12-10 09:51:39 字数 42 浏览 0 评论 0 原文

我将如何在 python 中做到这一点?我需要建立比服务器更强的连接。

How would I go about doing this in python? I need to establish a stronger connection than I may have to the server.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

兔姬 2024-12-17 09:51:39

使用 urllib2(这是从 http 服务器获取资源的最简单方法),您需要设置 http_proxy 环境变量。

如果您的代理未经身份验证,它将类似于:

export http_proxy=http://proxy:port/

如果您的代理正在身份验证,它将是:

export http_proxy=http://username:password@proxy:port/

如果您想以编程方式执行此操作,您可以使用 代理处理程序

Using urllib2 (which is the easiest way to fetch resources from a http server), you need to set the http_proxy environment variable.

If your proxy is unauthenticated it will be something like:

export http_proxy=http://proxy:port/

If your proxy is authenicating, it will be:

export http_proxy=http://username:password@proxy:port/

If you want to do this programattically, you can manually do this using a proxy handler.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文