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
- db
- android studio
- Python
- 파이썬
- insert_id
- mariaDB
- crashlytics
- 안드로이드 스튜디오
- 안드로이드
- escape_string
- last_insert_id
- 볼륨조절앱
- mysql_insert_id
- 역슬레시
- Android
- insertion
- soundcontroller
- 볼륨조절어플
- MySQL
- 데이터베이스
- Query
- 안드로이드앱
- 메터리얼
- 디자인패턴
- 머터리얼
- condensed
- auto_increment 값
- 알림바
- Auto_increment
- id 얻기
Archives
- Today
- Total
목록경도 (1)
장삼의 착한코딩
[Python] 주소로 위도 경도 검색하기
import urllib import json location = "검색 주소" data = urllib.urlopen("http://maps.googleapis.com/maps/api/geocode/json?sensor=false&language=ko&address=" + location) json = json.loads(data.read()) latitude = json["results"][0]["geometry"]["location"]["lat"] longitude = json["results"][0]["geometry"]["location"]["lng"] print latitude print longitude
Python
2016. 2. 1. 18:17