python requests 测试代理ip是否生效

时间:2022-06-30 11:56:54

代码如下所示:

?
1
2
3
4
5
6
7
8
9
10
11
12
import requests
'''代理IP地址(高匿)'''
proxy = {
  'http': 'http://117.85.105.170:808',
  'https': 'https://117.85.105.170:808'
}
'''head 信息'''
head = {'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36',
       'Connection': 'keep-alive'}
'''http://icanhazip.com会返回当前的IP地址'''
p = requests.get('http://icanhazip.com', headers=head, proxies=proxy)
print(p.text)

如果代理设置成功,最后显示的IP应该是代理的IP地址。

总结

以上所述是小编给大家介绍的python requests 测试代理ip是否生效,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!

原文链接:https://www.cnblogs.com/hcy-fly/p/9364521.html