Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- #비정형#카카오api#api#크롤링
- 웹크롤링
- #위도#경도#비정형데이터#크롤링
- #K-means #Clustering
- #크롤링 #웹문서
- 파이썬 셀레니움
- 코딩
- #비정형 데이터 #네이버 #지도 #크롤링
- 파이썬
- 웹매크로 #세잔느
- 숫자빼고 중복되는 코드동작법
- 구글 지오코드
- 위도경도
- 셀레니움
- 카카오APi
Archives
- Today
- Total
지방이의 Data Science Lab
[Python] 주어진 주소를 카카오 API로 위도, 경도를 가져오는 방법 본문
Python: 주어진 주소를 카카오 API로 위도, 경도를 가져오는 방법
import requests
import sys
x2=[];d=[];g=[];c=[];dc=[];y2=[]
for i in range(1,len(address["x"])+1):
url = "https://dapi.kakao.com/v2/local/search/address.json?"
apikey = "자신의 rest api사용 (방법은 다른 글에 써놓음)"
query = address["x"][i]
r = requests.get( url, params = {'query':query}, headers={'Authorization' : 'KakaoAK ' + apikey } )
while True:
try:
xx2=r.json()["documents"][0]['address']['x']
x2.append(xx2)
except:
x2.append('NA')
try:
yy2=r.json()["documents"][0]['address']['y']
y2.append(yy2)
except:
y2.append('NA')
try:
dd=r.json()["documents"][0]['address']['region_3depth_h_name']
d.append(dd)
except:
d.append('NA')
try:
dcdc=r.json()["documents"][0]['address']['h_code']
dc.append(dcdc)
except:
dc.append('NA')
try:
gg=r.json()["documents"][0]['address']['region_2depth_name']
g.append(gg)
except:
g.append('NA')
try:
cc=r.json()["documents"][0]['address']['region_1depth_name']
c.append(cc)
except:
c.append('NA')
break
Address={'Longitude':x2,'Latitude':y2,'H_name':d,'G_name':g,'C_name':c}
Address=pd.DataFrame(Address)
Address.to_csv('KR_AGNCINFO_address.csv', sep=",",encoding='ms949')
|
'Python Selenium > Web Crawling' 카테고리의 다른 글
[python] json 크롤링 header (1) | 2020.01.08 |
---|---|
[R] 영어와 한글이 섞인 컬럼에서 한글인 행만 추출하는 방법 (0) | 2019.03.16 |
[R] character로 이루어진 두 컬럼 병합시키기 (0) | 2019.03.15 |
[Python] 네이버맵: json을 이용한 매장정보 크롤링 (8) | 2019.03.07 |
[Python] 카카오 api를 이용한 크롤링(5): 카카오맵 주소 가져오기 코드 (0) | 2019.03.07 |
Comments