python爬腾讯财经新闻网
时间: 2023-12-07 12:39:08 浏览: 191
python爬虫,爬取CNNNews网页的带视频的新闻
5星 · 资源好评率100%
以下是使用Python爬取腾讯财经新闻网的方法:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://new.qq.com/ch/finance/'
# 发送请求
response = requests.get(url)
# 解析HTML
soup = BeautifulSoup(response.text, 'html.parser')
# 获取新闻列表
news_list = soup.find_all('div', class_='detail')
# 打印新闻标题和链接
for news in news_list:
title = news.find('a').text
link = news.find('a')['href']
print(title, link)
```
阅读全文