新闻网址: https://www.tsinghua.edu.cn/news.htm
本片文章实现爬取新闻标题和链接
将新闻标题及链接存储至 Excel 表
源码
# 清华新闻 import pandas as pd import requests from lxml import etree # 创建列表用于存储爬取的数据 list = [] # 请求网址 url = 'https://www.tsinghua.edu.cn/news.htm' # 请求头 header = { 'user_agent': 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36' } # 获取响应 , 转为中文 response = requests.get(url=url, headers=header).content chi = response.decode('utf-8') # 解析html html = etree.HTML(chi) data = html.xpath('/html/body/div[6]/div/div/ul/li/div[3]/a') for i in data: # 获取标题 , 并将标题数据加入 list 列表 title_text = i.xpath('.//text()')[0] # list.append(title_text) # 获取url title_url = i.xpath('./@href')[0] # url 不完整,则拼接成完整url, 并将完整url 加入list列表 if 'https' not in str(title_url): stitch_url = 'https://www.tsinghua.edu.cn/' + title_url list.append([title_text, stitch_url]) else: list.append([title_text, title_url]) # 在程序运行窗口打印输出 for i in list: print(i) # 持久化存储至 Excel文件 df = pd.Dataframe(list, columns=['title', 'url']) df.to_excel("list.xlsx", index=False)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)