在Python中,我们可以使用requests库来发送HTTP请求。使用IP代理时,我们需要在请求头中设置代理IP地址,例如:
python
Copy code
import requests
proxies = {
"http": "http://127.0.0.1:8080",
"https": "http://127.0.0.1:8080"
}
response = requests.get(url, proxies=proxies)
在上面的代码中,我们定义了一个proxies字典来设置代理IP地址,其中"http"和"https"分别代表HTTP和HTTPS协议。我们将代理服务器的IP地址设置为"http://127.0.0.1:8080",这里的IP地址和端口号需要根据实际情况进行修改。然后,我们将proxies字典作为参数传递给requests.get()方法,从而发送带有代理IP地址的HTTP请求。
python
Copy code
import requests
proxies = {
"http": "http://127.0.0.1:8080",
"https": "http://127.0.0.1:8080"
}
response = requests.get(url, proxies=proxies)
在上面的代码中,我们定义了一个proxies字典来设置代理IP地址,其中"http"和"https"分别代表HTTP和HTTPS协议。我们将代理服务器的IP地址设置为"http://127.0.0.1:8080",这里的IP地址和端口号需要根据实际情况进行修改。然后,我们将proxies字典作为参数传递给requests.get()方法,从而发送带有代理IP地址的HTTP请求。