python3.x 爬取新浪新闻-国内新闻的时间,标题,详细内容链接

时间:2021-07-05 09:13:25
【文件属性】:

文件名称:python3.x 爬取新浪新闻-国内新闻的时间,标题,详细内容链接

文件大小:412B

文件格式:PY

更新时间:2021-07-05 09:13:25

python 爬虫

python3.x 爬取新浪新闻-国内新闻的时间,标题,详细内容链接


网友评论

  • 没有用,不用下了,就这点东西 import requests from bs4 import BeautifulSoup res = requests.get('http://news.sina.com.cn/china/') res.encoding='utf-8' soup = BeautifulSoup(res.text,'html.parser') for news in soup.select('.news-item'): if len(news.select('h2'))>0: h2 = news.select('h2')[0].text time = news.select('.time')[0].text a = news.select('a')[0]['href'] print(time,h2,a)