检验此代码能否正常运行import requests from bs4 import BeautifulSoup url = "https://www.chinanews.com/importnews.html" headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 Edg/113.0.1774.57" } def get_news_list(url): res = requests.get(url=url, headers=headers) soup = BeautifulSoup(res.text, 'html.parser') news_list = [] for news in soup.select('.dd_lm'): title = news.select(".dd_bt a")[0].text.strip() news_list.append(title) return news_list if __name__ == '__main__': news_list = get_news_list(url) for news in news_list: print(news)
时间: 2024-02-23 11:56:44 浏览: 138
TAIEX数据:可从https://www.twse.com.tw获取Json原始数据
这段代码应该可以正常运行,它通过 requests 库发送 HTTP 请求,使用 BeautifulSoup 库解析 HTML 页面,然后提取出新闻标题并将其添加到列表中,最后输出所有的新闻标题。在运行代码之前,需要确保已经安装了 requests 和 BeautifulSoup 库。如果遇到导入库失败的问题,可以使用 pip 命令进行安装,例如:
```
pip install requests
pip install beautifulsoup4
```
安装完成后,就可以运行代码并获取新闻标题了。
阅读全文