hdf2json
我们编写的简单 Python 工具可帮助将 Clearsilver 的 HDF 数据集转换为更流行的 JSON 格式
用法
HDF 数据到 JSON:
>>> from hdf2json import hdf2json
>>> hdf2json(release_hdf_data)
' {"labels": [{"catno": "SK032", "name": "Svek"}], "title": "Stockholm"} '
HDF 数据到本机 Python 字典:
>>> from hdf2json import hdf2dict
>>> release = hdf2dict(release_hdf_data)
>>> release[ ' title ' ]
Stockholm
然后回到 JSON:
>>> json.dumps(release)
' {