温馨提示×

python爬虫requests如何进行代理设置

小樊
109
2024-12-11 10:26:17
栏目: 编程语言

在Python的requests库中,你可以通过设置proxies参数来使用代理服务器。以下是一个简单的示例:

import requests

url = 'https://www.example.com'
proxies = {
    'http': 'http://your_proxy_server:port',
    'https': 'https://your_proxy_server:port'
}

response = requests.get(url, proxies=proxies)
print(response.text)

在这个示例中,你需要将your_proxy_serverport替换为你的代理服务器的地址和端口号。如果你使用的是HTTP代理,请将https的URL设置为http://your_proxy_server:port。如果你使用的是SOCKS代理,你需要安装requests[socks]库,并将proxies参数的格式稍作修改:

import requests

url = 'https://www.example.com'
proxies = {
    'http': 'socks5://your_proxy_server:port',
    'https': 'socks5://your_proxy_server:port'
}

response = requests.get(url, proxies=proxies)
print(response.text)

请注意,如果你使用的是SOCKS代理,你可能需要在你的操作系统中配置代理设置。

0