인프런 커뮤니티 질문&답변

KoKuMa님의 프로필 이미지
KoKuMa

작성한 질문수

파이썬입문과 크롤링기초 부트캠프 [파이썬, 웹, 데이터 이해 기본까지] (업데이트)

직접 작성해보며 익숙해지기: 크롤링과 전처리 이해하기 (업데이트)

강의 크롤링 엑셀 파일로 저장하는 것까지 추가해 봤습니다.

해결된 질문

작성

·

130

1

## 엑셀 시트 연습겸 추가했습니다.
## 좋은 강의 감사합니다.

import re
from bs4 import BeautifulSoup
import requests
import openpyxl 

res = requests.get('https://davelee-fun.github.io/blog/crawling_stock_example.html')
soup = BeautifulSoup(res.content, 'html.parser')

items = soup.select('li.row_sty')

excel_file = openpyxl.Workbook()
excel_sheet = excel_file.active 
excel_sheet.title = 'Sheet1'
excel_sheet.append(['회사명','주식 가격','변동율'])

for i in items:
    a = i.select_one('div.st_name').get_text().replace(" ","").replace('\n','')
    b = i.select_one('div.st_price').get_text().replace('\n','').replace(" ","")
    c = i.select_one('div.st_rate').get_text().replace('\n','').replace(" ","")
    excel_sheet.append([a,b,c])
    
excel_file.save('stock.xlsx')
excel_file.close()

답변 1

1

안녕하세요. 넵 잘하셨습니다.~~~

KoKuMa님의 프로필 이미지
KoKuMa

작성한 질문수

질문하기