Python (2) 썸네일형 리스트형 5분만에 네이버 뉴스 기사 크롤링하기 오픈소스 라이브러리 BeautifulSoup pip install bs4 from bs4 import BeautifulSoup # urllib을 사용한 Request 보내기 import urllib.request url = "https://news.naver.com/" req = urllib.request.urlopen(url) # url에 대한 연결요청 res = req.read() # 연결요청에 대한 응답 soup = BeautifulSoup(res,'html.parser') # BeautifulSoup 객체생성 # print('html 모두 읽어옴 ') # print(soup) test = soup.find_all('strong') print('strong안에 있는 내용 모두 출력') print(t.. Data Visualization 시작하기 Visualization Tools More Abstraction -----------------------------------> More Control powerBi plotly.js Excel Tableau chartist NVD3 chart.js D3.JS cytoscape.js Data Types Quantitative categorical ordinal temporal spatial Chart Suggestions 데이터분석 과정 문제 정의 > 수집 및 분석할 데이터 정의 > 분석계획/ 표본데이터 수집 > 데이터 획득 > 데이터 전처리 및 정제 > 탐색적 데이터 분석 > 기계학습 등을 이용한 분류 또는 예측 모델링 > 보고서 작성 이전 1 다음