티스토리 뷰
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
import requests
from bs4 import BeautifulSoup
def get_bs_obj(company_code):
url = "https://finance.naver.com/item/main.nhn?code=" + company_code
result = requests.get(url)
bs_obj = BeautifulSoup(result.content, "html.parser")
return bs_obj
# bs_obj를 받아서 price 를 return하게
def get_price(company_code):
bs_obj = get_bs_obj(company_code)
no_today = bs_obj.find ("p", {"class":"no_today"})
blind_now = no_today.find("span", {"class":"blind"})
return blind_now.text
company_codes = ["005930", "017670", "000100" ]
# Samsung 005930
# sk telecom 017670
# Youhan
for item in company_codes:
price = get_price(item)
print(price)
'기타 > 언어' 카테고리의 다른 글
QSAR 툴박스 다운 받기 (1) (0) | 2021.03.27 |
---|---|
파이참에서 Pandas 설치하는 방법 (0) | 2020.11.28 |
네이버 금융 삼성전자 가격 크롤링으로 가져오기 (파이썬) (0) | 2020.06.14 |
네이버 증권 상한가 종목 페이지 크롤링 파이썬 (0) | 2020.06.14 |
파이썬에서 PIP를 활용하여 win32com 모듈 설치하기 (0) | 2020.03.14 |