关于python爬虫-request.get()方法的常用参数


最近在写一些爬虫相关的小项目,了解了一下request模块的get()方法

这里记录一下,request.get的常用参数

1、设置proxy代理及user_agent两个参数

import requests
from lxml import etree

user_agent = {'User-agent':"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36"}

# 测试https需要有,用于访问https的网站需要的
proxies={
'http':'proxy.qq_5201351.com.cn:8080',
'https':'proxy.qq_5201351.com.cn:8080'
}
# 如果不需要代理,在get方法中可以不写 headers = user_agent,也可以使用如下方式定义为空字典{}
# proxies={}

response=requests.get("https://www.cnblogs.com/5201351",headers = user_agent,proxies=proxies)
text=response.text

另:一般在得到response.text,如果需要使用xpath去解析,可以导入lxml模块的etree

 

 

 

尊重别人的劳动成果 转载请务必注明出处:https://www.cnblogs.com/5201351/p/15583042.html

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM