프로그래밍언어/Python

string to base64

부산딸랑이 2014. 10. 28. 00:13

text = '하이'.encode('utf8')
encoded = base64.b64encode (text)

 

#base64 인코딩 ascii문자열은 바로 사용가능

#encoded = base64.b64encode(b'data to be encoded')

 

 

 

파이썬2

>>> b = base64.encodestring(b'하이')
>>> s = base64.decodestring(b)
>>> print urllib.unquote(s)

 

'프로그래밍언어 > Python' 카테고리의 다른 글

SendMessage  (0) 2014.10.29
이미지 to Base64  (0) 2014.10.28
파이썬 winapi 사용할수 있게 해주는 모듈  (0) 2014.10.07
주절주절) Sl4a 활용하기..  (0) 2014.10.02
파이썬 url인코딩  (0) 2014.09.25