通过设置ua模拟浏览器
Posted tiankong-blue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过设置ua模拟浏览器相关的知识,希望对你有一定的参考价值。
import requests
from lxml import etree
url=‘https://ie.icoa.cn/‘
head={‘user-agent‘:‘Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (Khtml, like Gecko) Chrome/76.0.3809.132 Safari/537.36‘}
res=requests.get(url,headers=head) #通过设置 headers模拟浏览器
res.encoding=‘utf-8‘
root=etree.HTML(res.text)
ua=root.xpath(‘//table[@class="zebra"]/tr/td/i/text()‘)
print(ua)
以上是关于通过设置ua模拟浏览器的主要内容,如果未能解决你的问题,请参考以下文章