我要用python爬取网易新闻数据代码
时间: 2023-09-03 20:12:02 浏览: 221
一个简单的网易新闻爬虫
5星 · 资源好评率100%
以下是一个简单的Python爬虫代码示例,可以爬取网易新闻的相关数据:
```python
import requests
from bs4 import BeautifulSoup
# 请求头部信息
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}
# 要爬取的网址
url = 'https://news.163.com/'
# 发送请求
response = requests.get(url, headers=headers)
# 如果请求成功
if response.status_code == 200:
# 使用beautifulsoup解析html
soup = BeautifulSoup(response.text, 'html.parser')
# 获取新闻列表
news_list = soup.select('.news_list li')
# 遍历新闻列表
for news in news_list:
# 获取新闻标题和链接
title = news.select_one('a').text.strip()
link = news.select_one('a')['href']
# 输出结果
print(title, link)
else:
print('请求失败')
```
此代码将从网易新闻主页中获取新闻标题和链接。您可以根据自己的需求进行修改和优化。
阅读全文