파이썬 JSON


이 장에서는 Python 언어를 사용하여 JSON 개체를 인코딩하고 디코딩하는 방법을 소개합니다.


환경 구성

Python을 사용하여 JSON 데이터를 인코딩하거나 디코딩하기 전에 먼저 JSON 모듈을 설치해야 합니다. 이 튜토리얼에서는 Demjson을 다운로드하고 설치합니다:

$ tar xvfz demjson-1.6.tar.gz
$ cd demjson-1.6
$ python setup.py install

JSON 함수

函数描述
encode将 Python 对象编码成 JSON 字符串
decode将已编码的 JSON 字符串解码为 Python 对象

encode

Python encode() 함수는 Python 객체를 JSON 문자열.

구문

demjson.encode(self, obj, nest_level=0)

다음 예는 배열을 JSON 형식 데이터로 인코딩합니다.

#!/usr/bin/python
import demjson

data = [ { 'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'e' : 5 } ]

json = demjson.encode(data)
print json

위 코드의 실행 결과는 다음과 같습니다.

[{"a":1,"b":2,"c":3,"d":4,"e":5}]

decode

Python은 demjson.decode() 함수를 사용하여 JSON 데이터를 디코딩할 수 있습니다. 이 함수는 Python 필드의 데이터 유형을 반환합니다.

구문

demjson.decode(self, txt)

다음 예는 Python이 JSON 객체를 디코딩하는 방법을 보여줍니다.

#!/usr/bin/python
import demjson

json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';

text = demjson.decode(json)
print  text

위 코드의 실행 결과는 다음과 같습니다.

으르르