第九节 request使用代理和cookie
Posted kogmaw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第九节 request使用代理和cookie相关的知识,希望对你有一定的参考价值。
1 import requests 2 3 4 resp = requests.get("http://httpbin.org/ip") 5 print(resp.text) 6 7 proxy = { 8 ‘http‘:‘60.167.102.218:9999‘ 9 } 10 resp2 = requests.get("http://httpbin.org/ip",proxies = proxy) 11 #运行失败的话要更换代理IP,免费的经常会有这样的问题,响应时间太久 12 print(resp2.text)
1 import requests 2 3 4 url = "http://www.renren.com/" 5 data = { 6 "email":"97013807@qq.com", 7 "password":"pythonspider" 8 } 9 headers = {} 10 session = requests.Session() 11 session.post(url,data=data,headers = headers) 12 13 resp = session.get(url)
以上是关于第九节 request使用代理和cookie的主要内容,如果未能解决你的问题,请参考以下文章
萌新向Python数据分析及数据挖掘 第一章 Python基础 第九节 类
《树莓派项目实战》第九节 使用PCF8591模块和光敏电阻传感器测量光照强度