지방이의 Data Science Lab

[Python] 카카오 api를 이용한 크롤링(2) : 위도, 경도 가져오기 본문

Python Selenium/Web Crawling

[Python] 카카오 api를 이용한 크롤링(2) : 위도, 경도 가져오기

[지현] 2019. 3. 3. 18:21

https://jlim0316.tistory.com/4

 

카카오 api를 이용한 크롤링(1): 카카오 앱 키를 얻기

카카오 rest api를 이용해서 크롤링 해보자 단점: 갯수제한 걸려있다. 카카오 개발사이트에서 로그인(https://developers.kakao.com)하고, 앱을 등록, 플랫폼 등록 후 따라하면 된다. https://developers.kakao.co..

jlim0316.tistory.com

를 보고 토큰까지 있어야 아래 글을 참고할 수 있다.


 

# 카카오 api로  위도 경도 표시하는 방법

https://developers.kakao.com/docs/restapi/local


1
2
3
4
5
6
7
def getLatLng(addr):
 url = 'https://dapi.kakao.com/v2/local/search/address.json?query='+addr
 headers = {"Authorization""KakaoAK YourAppKey"}
 result = json.loads(str(requests.get(url,headers=headers).text))
 match_first = result['documents'][0]['address']
 
 return float(match_first['y']),float(match_first['x'])

 

사실 난 아직도 https://jlim0316.tistory.com/3 에서 사용했던 구글 지오코드가 훨씬 편하다.

위도 경도 표시하는데 이만한 편리함이 없다. 

 

 

Comments