博客园  :: 首页  :: 管理

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

Posted on 2021-11-20 23:29  520_1351  阅读(1955)  评论(0编辑  收藏  举报

最近在写一些爬虫相关的小项目,了解了一下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