# 크롤링 실습: 금융 속보 제목 수집하기
import requests as rq
from bs4 import BeautifulSoup
url = 'https://finance.naver.com/news/news_list.naver?mode=LSS2D§ion_id=101§ion_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문 리스트 내포
'Python > 퀀트' 카테고리의 다른 글
정적 크롤링과 동적 크롤링의 차이 (0) | 2024.11.05 |
---|---|
크롤링 실습: POST 방식 데이터 수집하기 (0) | 2024.11.05 |
크롤링 실습: 테이블 형태의 데이터 수집하기 (0) | 2024.11.05 |
크롤링 실습: 명언 수집하기 (2) | 2024.11.05 |
크롤링 사전 지식 (1) | 2024.11.05 |
댓글