주식 #크롤링1 파이썬(BeautifulSoup)사용해서 주식 데이터 크롤링(가져오기) import requests from bs4 import BeautifulSoup url = 'https://stock.mk.co.kr/domestic/all_stocks?type=kospi&status=industry' # url = 'https://stock.mk.co.kr/domestic/all_stocks?type=kosdaq&status=industry' response = requests.get(url) # print("response",response.text) html = response.text soup = BeautifulSoup(html, 'html.parser')#html형태로 바꾼다. box = soup.select('.row_sty') for idx,a in enumerate(b.. 2023. 7. 8. 이전 1 다음