标签:key json 简单 http bsp 代码 https ... pre
首先要明晰一点,json标准中,key是必须要带引号的,所以标准json模块解析不带引号的key的 json就会抛错
不过有一些lib可以帮我们解析
如:demjson(链接)
>>>> import demjson
>>> demjson.decode(‘{suggestion:[{query:"London",interpretation: ...‘)
{u‘suggestion‘: [{u‘query‘: u‘London‘, u‘operation‘: 2, u‘interpretation‘: ...
简单的例子(代码)
>>> import demjson
>>> demjson.encode( [‘one‘,42,True,None] ) # From Python to JSON
‘["one",42,true,null]‘
>>> demjson.decode( ‘["one",42,true,null]‘ ) # From JSON to Python
[‘one‘, 42, True, None]
>>> cfg = demjson.decode_file( "config.json" ) # Read JSON from a file
python:解析js中常见的 不带引号的key的 json
标签:key json 简单 http bsp 代码 https ... pre
原文地址:https://www.cnblogs.com/zhouxinfei/p/8976710.html