python에서 json 처리 예제.
>>> import json
>>> json_string = '{"master":"1.1.1.1:1111", "slave":["2.2.2.2:2222", "3.3.3.3:3333"]}'
>>> decoded = json.loads(json_string)
>>> print json.dumps(decoded, indent=2)
{
"slave": [
"2.2.2.2:2222",
"3.3.3.3:3333"
],
"master": "1.1.1.1:1111"
}
>>> print json.dumps(decoded, indent=2, sort_keys=True)
{
"master": "1.1.1.1:1111",
"slave": [
"2.2.2.2:2222",
"3.3.3.3:3333"
]
}
>>> print decoded['master']
1.1.1.1:1111
>>> print decoded['slave']
[u'2.2.2.2:2222', u'3.3.3.3:3333']
>>> print decoded['slave'][0]
2.2.2.2:2222
>>> print decoded['slave'][1]
3.3.3.3:3333
'python' 카테고리의 다른 글
[python] sys모듈의 sys.path 추가하기 (0) | 2016.01.22 |
---|---|
[python] zookeeper client - kazoo 예제 (0) | 2016.01.05 |
pythonic 이란. (0) | 2015.08.25 |
[ipython] Pandas 라이브러리 사용시 좋은 레퍼런스 (0) | 2015.07.07 |
[ipython] numpy.dtype has the wrong size, try recompiling 해결 (0) | 2015.07.07 |