본문 바로가기
Python/퀀트

크롤링 실습 : 금융 속보 제목 수집하기

by 훈영 2024. 11. 5.
# 크롤링 실습: 금융 속보 제목 수집하기
import requests as rq
from bs4 import BeautifulSoup

url = 'https://finance.naver.com/news/news_list.naver?mode=LSS2D&section_id=101&section_id2=258'
data = rq.get(url)                  # HTML 가져오기
html = BeautifulSoup(data.content)  # HTML 요소에 접근하기 쉬운 BeautifulSoup 객체로 변경

html_select = html.select('dl > dd.articleSubject > a')
html_select[0]['title']

[i['title'] for i in html_select]  # for문 리스트 내포

댓글