python爬取新闻标题的代码
时间: 2023-07-10 15:14:21 浏览: 93
【Python应用实战案例】-爬取新闻网站新闻(代码).zip
5星 · 资源好评率100%
可以使用Python的requests和BeautifulSoup库来爬取新闻标题,具体代码如下:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://news.baidu.com/'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
news_list = soup.find_all('a', class_='title')
for news in news_list:
print(news.text)
```
这段代码会爬取百度新闻首页的所有新闻标题,并把它们打印出来。当然,你也可以将其保存到文件中或者进行其他的处理。
阅读全文