반응형
[웹 크롤러 만들기]
import requests
import re
# [a 태그]
URL='https://www.daum.net/'
headers = {'Content-Type': 'application/json; charset=utf-8'}
res=requests.get(URL,headers=headers)
html=res.text
re_a = re.compile("<[Aa]\s+[^>]+>", re.MULTILINE)
a_tag = re_a.findall(html)
print('\n'.join(a_tag))
반응형
'Language_ > python' 카테고리의 다른 글
[python] pwntools 모듈 정리 (2) | 2018.11.03 |
---|---|
[pyhon] 웹 크롤러[정규표현식] #이미지다운 (0) | 2018.08.24 |
[python] requests 모듈 정리 (4) | 2018.08.19 |
[python] 환경변수 설정 (0) | 2018.08.18 |
[pyhon] 웹 크롤러[beautifulsoup] #이미지다운 (0) | 2018.08.18 |
댓글