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地址。
原文地址:https://www.cnblogs.com/hcy-fly/p/9364521.html
时间: 2024-10-31 18:41:28