반응형
Notice
Recent Posts
Recent Comments
Link
관리 메뉴

bro's coding

python.webcrawling.beautiful soap.find/find_all 본문

[IT]/python

python.webcrawling.beautiful soap.find/find_all

givemebro 2021. 2. 2. 16:49
반응형

import requests
from bs4 import BeautifulSoup
response = requests.get("http://naver.com")
data = BeautifulSoup(response.text,"html.parser")

# id가 u_skip인 것들을 모두 찾음
print(data.find(id="u_skip"))

'''
<div id="u_skip"> <a href="#newsstand"><span>뉴스스탠드 바로가기</span></a> <a href="#themecast"><span>주제별캐스트 바로가기</span></a> <a href="#timesquare"><span>타임스퀘어 바로가기</span></a> <a href="#shopcast"><span>쇼핑캐스트 바로가기</span></a> <a href="#account"><span>로그인 바로가기</span></a> </div>
'''

 

 

import requests
from bs4 import BeautifulSoup
response = requests.get("http://naver.com")
data = BeautifulSoup(response.text,"html.parser")

# 속성
attr = {"id":"u_skip"}
# div tag를 가진 것들 중 id가 u_skip인 것들을 모두 찾음
print(data.find_all("div",attrs=attr))

'''
[<div id="u_skip"> <a href="#newsstand"><span>뉴스스탠드 바로가기</span></a> <a href="#themecast"><span>주제별캐스트 바로가기</span></a> <a href="#timesquare"><span>타임스퀘어 바로가기</span></a> <a href="#shopcast"><span>쇼핑캐스트 바로가기</span></a> <a href="#account"><span>로그인 바로가기</span></a> </div>]
'''
반응형
Comments