python爬虫 中国大学排名

中国大学排名爬取
下面使用到了 xpath解析技术
import requests
from lxml import etree

def get_content(url ):
'''获取页面代码'''
try:
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36'
}
res = requests.get(url,headers=headers)
res.raise_for_status()
res.encoding = res.apparent_encodi

python爬虫 中国大学排名最先出现在Python成神之路

版权声明:
作者:感冒的梵高
链接:https://www.techfm.club/p/10378.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>