작성
·
289
0
html 태그로 크롤링을 하는 중입니다.
<img height="6" width="7" alt="상승" src="https://ssl.pstatic.net/static/nfinance/ico_up.gif">
위 태그에서 alt="상승" 이라는 부분을
크롤링하고 싶은데 혹시 어떻게 하면 좋을까요?
답변 1
0
안녕하세요. 답변도우미입니다. 다음과 같은 방식으로 하실 수는 있습니다. 다만 워낙 다양한 케이스가 있어서, 강의내에서 설명드리는 기법을 중심으로 강의 내의 사이트로 연습하시는 것이 보다 익숙해지시는데 도움이 되실 것 같아요.
from bs4 import BeautifulSoup
html = '<img height="6" width="7" alt="상승" src="https://ssl.pstatic.net/static/nfinance/ico_up.gif">'
soup = BeautifulSoup(html, 'html.parser')
img_tag = soup.find('img')
alt_value = img_tag['alt']
print(alt_value) # 출력: 상승