지방이의 Data Science Lab

[Python] 카카오 api를 이용한 크롤링(3): 웹문서 검색 본문

Python Selenium/Web Crawling

[Python] 카카오 api를 이용한 크롤링(3): 웹문서 검색

[지현] 2019. 3. 3. 19:02

이효리를 웹문서에 검색한 결과를 크롤링해보기

https://developers.kakao.com/docs/restapi/search#웹문서-검색

검색창 cmd에서 pip install simple json 필요

 

 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import simplejson,requests
import sys
 
url = "https://dapi.kakao.com/v2/search/web"
apikey = "인증받은 rest api key 값 입력할 것"
subj = "이효리"
 
= requests.get( url, params = {'query':subj}, headers={'Authorization' : 'KakaoAK ' + apikey } )
js = simplejson.JSONEncoder().encode(r.json())
 
for i in r.json()["documents"] :
print (i["title"])
print (i["url"])
print (i["datetime"])
print (i["contents"])
 
 

 

출력값은

 

이렇게 나온다.

 

Comments