import matplotlib.pyplot as plt
import requests from bs4 import BeautifulSoup from wordcloud import WordCloud import matplotlib.pyplot as plt # Daum 뉴스 페이지 URL url = 'https://news.daum.net/' # HTTP GET 요청을 보내고 페이지 내용 가져오기 response = requests.get(url) html = response.text # BeautifulSoup을 사용하여 HTML 파싱 soup = BeautifulSoup(html, 'html.parser') # 뉴스 제목 추출 titles = [] headline_articles = soup.find_all("div", class_="item_issue") f..
시사경제지식
2023. 8. 28. 13:50