# 不使用代理
resp = requests.get('http://httpbin.org/ip')
print(resp.text)
# {"origin": "114.93.163.248"}
proxies = {
'http': 'http://139.227.252.141:8118',
'https': 'https://139.227.252.141:8118'
}
# 使用代理
resp = requests.get('http://httpbin.org/ip', proxies=proxies)
print(resp.text)
# {"origin": "139.227.252.141"}
本系列文章和代码已经作为项目归档到github,仓库地址:jumper2014/PyCodeComplete。大家觉得有帮助就请在github上star一下,你的支持是我更新的动力。什么?你没有github账号?学习Python怎么可以没有github账号呢,快去注册一个啦!