Python将类序列化为JSON [重复]
Posted
技术标签:
【中文标题】Python将类序列化为JSON [重复]【英文标题】:Python serialize class to JSON [duplicate] 【发布时间】:2017-01-20 14:34:32 【问题描述】:我有一个要构建大量 JSON 对象的需求。并且有许多不同的定义,理想情况下我想像类一样管理它们并构造对象并按需将它们转储到 JSON。
是否有现成的包装/食谱让我可以执行以下操作
为了简单起见,假设我需要代表正在工作、学习或两者兼有的人:
[
"Name": "Foo",
"JobInfo":
"JobTitle": "Sr Manager",
"Salary": 4455
,
"Name": "Bar",
"CourseInfo":
"CourseTitle": "Intro 101",
"Units": 3
]
我想创建可以转储有效 JSON 的对象,但创建时像常规的 python 类。
我想像 db 模型一样定义我的类:
class Person:
Name = String()
JobInfo = Job()
CourseInfo = Course()
class Job:
JobTitle = String()
Salary = Integer()
class Course:
CourseTitle = String()
Units = Integer()
persons = [Person("Foo", Job("Sr Manager", 4455)), Person("Bar", Course("Intro 101", 3))]
person_list = list(persons)
print person_list.to_json() # this should print the JSON example from above
编辑
我编写了自己的迷你框架来完成此操作。它可以通过 pip 获得
pip install pymodjson
此处提供了代码和示例:(MIT) https://github.com/saravanareddy/pymodjson
【问题讨论】:
See here。对于验证部分,您需要编写自己的JSONEncoder
。
【参考方案1】:
您可以通过仔细过滤对象的__dict__
来创建json
。
工作代码:
import json
class Person(object):
def __init__(self, name, job=None, course=None):
self.Name = name
self.JobInfo = job
self.CourseInfo = course
def to_dict(self):
_dict =
for k, v in self.__dict__.iteritems():
if v is not None:
if k == 'Name':
_dict[k] = v
else:
_dict[k] = v.__dict__
return _dict
class Job(object):
def __init__(self, title, salary):
self.JobTitle = title
self.Salary = salary
class Course(object):
def __init__(self, title, units):
self.CourseTitle = title
self.Units = units
persons = [Person("Foo", Job("Sr Manager", 4455)), Person("Bar", Course("Intro 101", 3))]
person_list = [person.to_dict() for person in persons]
print json.dumps(person_list)
【讨论】:
以上是关于Python将类序列化为JSON [重复]的主要内容,如果未能解决你的问题,请参考以下文章
使用 WCF 将类序列化为 xsd.exe 生成的 JSON
使用 JsonConvert.DeserializeObject 或 JObject.Parse 将类反序列化为 c# 中的字典