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
- MySQL
- 역슬레시
- Query
- Python
- insert_id
- id 얻기
- 안드로이드 스튜디오
- soundcontroller
- 파이썬
- 디자인패턴
- escape_string
- auto_increment 값
- db
- 알림바
- condensed
- android studio
- 안드로이드
- Android
- last_insert_id
- mariaDB
- mysql_insert_id
- 안드로이드앱
- Auto_increment
- 볼륨조절어플
- insertion
- crashlytics
- 머터리얼
- 메터리얼
- 볼륨조절앱
- 데이터베이스
Archives
- Today
- Total
목록Python (2)
장삼의 착한코딩
[Python] escape_string 작은따옴표, 큰따옴표 처리
python으로 쿼리를 사용할 때, query 문 안에 '(작은따옴표), "(큰따옴표)가 들어가게 되면 query 에러가 발생할 수 있다. import MySQLdbMySQLdb.escape_string() 을 사용하면 작은따옴표, 큰따옴표 앞에 \(역슬레시)를 붙여주어서 query가 올바르게 동작할 수 있도록 할 수 있다.
Python
2016. 2. 3. 14:16
[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