본문 바로가기
Language_/python

[pyhon] 웹 크롤러[beautifulsoup] #a태그

by 낭람_ 2018. 8. 18.
반응형

[웹 크롤러 만들기] 


import requests
import re
from bs4 import BeautifulSoup

URL='https://www.daum.net/'
headers = {'Content-Type': 'application/json; charset=utf-8'}
res=requests.get(URL,headers=headers)


soup = BeautifulSoup(res.text,'html.parser')

for url in soup.find_all('a',{'href':re.compile('^http')}) :
print (url)


[python] requests 모듈 정리



반응형

'Language_ > python' 카테고리의 다른 글

[python] requests 모듈 정리  (4) 2018.08.19
[python] 환경변수 설정  (0) 2018.08.18
[pyhon] 웹 크롤러[beautifulsoup] #이미지다운  (0) 2018.08.18
[python] 문자열  (0) 2018.08.16
[python] 시작  (0) 2018.08.16

댓글