用Python编写一个新闻爬取程序
时间: 2023-05-13 12:05:55 浏览: 161
爬取新闻网站新闻列表的python程序
好的,我可以为您提供一个Python新闻爬取程序的示例代码:
```python
import requests
from bs4 import BeautifulSoup
url = "https://news.baidu.com/"
response = requests.get(url)
soup = BeautifulSoup(response.content, "html.parser")
news_list = soup.find_all("a", {"class": "news-title"})
for news in news_list:
print(news.text.strip())
```
这个程序使用了requests和BeautifulSoup库来获取和解析百度新闻页面的内容,并输出新闻标题。您可以根据需要修改代码来适应不同的新闻网站。
阅读全文