抓取新聞標題¶
In [ ]:
Copied!
import requests
from bs4 import BeautifulSoup
import requests
from bs4 import BeautifulSoup
In [ ]:
Copied!
url = "https://news.cnyes.com/news/cat/tw_stock_news"
url = "https://news.cnyes.com/news/cat/tw_stock_news"
In [ ]:
Copied!
r = requests.get(url)
soup = BeautifulSoup(r.text, 'lxml')
r = requests.get(url)
soup = BeautifulSoup(r.text, 'lxml')
In [ ]:
Copied!
news_list = soup.select('div._2bFl.theme-list h3')
news_list = soup.select('div._2bFl.theme-list h3')
In [ ]:
Copied!
for news in news_list:
print(news.text)
for news in news_list:
print(news.text)