잡아 https://www.investing.com/news/stock-market-news
주식 시장 뉴스 – Investing.com 미국 및 전 세계 거래에 영향을 미치는 주식 시장 뉴스를 받아보십시오. Investing.com의 주식 시장 뉴스 팀은 시간외 거래, 수익 보고서, 회사 뉴스 및 오늘날 주요 주식 시장에 영향을 미치는 모든 것을 다룹니다.
www.investing.com
필요한 라이브러리 가져오기
bs4에서 BeautifulSoup 가져오기 요청 가져오기
확인하다
# 대상 사이트:Investing.comurl = “https://www.investing.com/news/stock-market-news” # 프로토콜 상태 확인 resp = requests.get(url)print(resp) # 200이면 is OK # 사이트 코드 가져오기 soup = BeautifulSoup(resp.content, ‘lxml’)print(soup)
출력된 뉴스 기사 URL 가져오기 url_list =()# url_list = soup.find_all(‘article’, “js-article-item”)# 수프에서 i에 대한 기사 태그의 js-article-item 클래스만 가져옵니다.
find_all( ‘article’ , “js-article-item”): # 광고 태그 제거 # i(‘class’) => i의 클래스 이름 가져오기 if “sponsoredArticle” in i(‘class’): continue else: # 여러 태그만 가져오기 태그의 첫 번째 태그 url_list.append(i.find(‘a’))#Get tags# url_list = soup.find(‘div’, ‘largeTitle’).find_all(‘a’)print (url_list) Result (,
,
,
,
,
,
,
,
,
,
,
,
,