목록데이터 분석/데이터 수집 (3)
Star_project
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/zV6Or/btrzi2DhMHR/K8vzicEtG2H9vhmxfXEPd0/img.png)
https://junyoru.tistory.com/129 #YahooFinanceAPI #주가데이터 받아오는 법 [Python] Yahoo Finance API로 주가 데이터 받아오기 미국 주식 정보는 네이버 등 우리가 흔히 쓰는 사이트에서 확인하기 쉽지 않다. 따라서 해외주식 투자자들은 여러 종류의 사이트를 통해 미국 주식 정보를 얻고 있을 것이다. investing.com, FINVIZ, S junyoru.tistory.com 위 블로그를 참고했습니다. https://finance.yahoo.com/quote/CL%3DF?p=CL%3DF Crude Oil May 22 (CL=F) Stock Price, News, Quote & History - Yahoo Finance Find the latest C..
HTML 파싱하여 원하는 부분 추출하기. crazyj.tistory.com/80 Python BeautifulSoup 웹크롤링/HTML 파싱. HTML 파싱하여 원하는 부분 추출하기. + Beautifulsoup 설치 pip install beautifulsoup4 버전 4 + URL로 HTML 가져와서파싱하기 from urllib.request import Request, urlopen from bs4 import BeautifulSoup url.. crazyj.tistory.com request, beautifulsoup rednooby.tistory.com/97?category=695414 [Python] requests 기초와 beautiful soup를 활용한 크롤링, [크롤링 준비] 본게시글은..
# To add a new cell, type '# %%' # To add a new markdown cell, type '# %% [markdown]' # %% # 2021-04-18 # %% from urllib import request w = request.urlopen('https://www.weatheri.co.kr/forecast/forecast01.php?mNum=1&sNum=1') w.read().decode('utf-8')[:100] # %% # requests 모듈 설치 # !pip install requests # %% # !chcp 65001 # %% import requests r = requests.get('https://www.weatheri.co.kr/forecast/for..