当前位置: 首页 > 工具软件 > mechanize > 使用案例 >

python设置internet_Python mechanize set_代理和internet选项代理设置

禄源
2023-12-01

除了上述步骤外,如果需要,还必须使用凭据进行身份验证,才能使用http代理。否则,mechanize知道使用代理,但不知道如何进行身份验证。

有关详细信息,请参见:mechanizeDocbr = mechanize.Browser()

# Explicitly configure proxies (Browser will attempt to set good defaults).

# Note the userinfo ("joe:password@") and port number (":3128") are optional.

br.set_proxies({"http": "joe:password@myproxy.example.com:3128",

"ftp": "proxy.example.com",

})

# Add HTTP Basic/Digest auth username and password for HTTP proxy access.

# (equivalent to using "joe:password@..." form above)

# not necessary if credentials are not required

br.add_proxy_password("joe", "password")

您还必须检查防火墙是否配置为通过代理的通信标题。在Windows下,您可能还体验到可以从浏览器发送流量,因为这是在防火墙中配置的(作为源程序)。在

此外,您可以使用多个代理,因为mechanize代理不依赖于其他配置。在

 类似资料: