python 2.x 대역에서 일반적으로 내용에 한글이 들어갈 때 utf-8처리를 위해선

#-*- coding: utf-8 -*-


코드를 많이 쓰는데.


해당 구문을 넣어도 format, string함수에서 쓰다보면 한글이 제대로 입력 되지 않는 경우가 발생한다.


이런경우 sys를 import해서 인코딩 세팅을 해줘어야 하는데


import sys

reload(sys)

sys.setdefaultencoding('utf-8')



해당 코드를 다 적으면 잘 돌아간다.



osmc에서 pip로 lxml를 설치 하다가 이리저리 실패...


구글을 통해서 쪼개서 설치법


https://raspberrypi.stackexchange.com/questions/68894/cant-install-lxml




osmc 설치가 설치된 라즈베리파이에서 python 패키지 관리툴인 pip 설치를 위한 명령어



파이썬 dictionary 객체에다가 새로운 키를 추가 할 때...


http://stackoverflow.com/questions/1024847/add-new-keys-to-a-dictionary


Python의 flask를 이용한 기본 rest api 템플릿


https://github.com/alyssaq/flask-restful-api-appengine

+ Recent posts