json转实体类
Project description
jsonModel
json数据转为实体类的工具
python版本
2.7 ~ 3.8
安装
包被上传到pypi
使用pip安装:
$ pip install pyjsonmodel
或 更新包
$ pip install pyjsonmodel --update
使用方法
# 模型 class GModel: sss = None class ZModel: aaa = None class People: name = None age = None girlFriends = None zzz = None testList = None # 这里指定属性类型 __doc__ = { "girlFriends": GModel, "zzz": ZModel } # 引用 import jsonModel data = '[{"testList":[1, 2, 3],"name":"jack","age":13,"girlFriends":[{"sss":"111"},{"sss":"222"}],"zzz":{"aaa":"aaa"}},{"testList":[1, 2, 3],"name":"jone","age":21,"girlFriends":[{"sss":"111"},{"sss":"222"}],"zzz":{"aaa":"aaa"}}]' # json 转 实体类 res = jsonModel.loads(data, People) # 实体类 转 json jsonStr = jsonModel.dumps(res)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyjsonmodel-1.0.2.tar.gz
(3.7 kB
view hashes)
Built Distribution
Close
Hashes for pyjsonmodel-1.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b7b494d81afaacd49b76bdc411ff820e70f460a8a1623d606e2a7196e4a6a54 |
|
MD5 | be020087fd4229027fbb5c32c226e0d1 |
|
BLAKE2-256 | 5f15bf6da92b779633748a7dac9bfa43f2282bef76f85cd88ec3cf38344ddced |