本文整理汇总了Python中jsonpickle.set_encoder_options方法的典型用法代码示例。如果您正苦于以下问题:Python jsonpickle.set_encoder_options方法的具体用法?Python jsonpickle.set_encoder_options怎么用?Python jsonpickle.set_encoder_options使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jsonpickle
的用法示例。
在下文中一共展示了jsonpickle.set_encoder_options方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: save
# 需要导入模块: import jsonpickle [as 别名]
# 或者: from jsonpickle import set_encoder_options [as 别名]
def save(self, file=None):
if file is None:
file = self.save_file
if isinstance(click.get_current_context().obj, proscli.utils.State) and click.get_current_context().obj.debug:
proscli.utils.debug('Pretty Formatting {} File'.format(self.__class__.__name__))
jsonpickle.set_encoder_options('json', sort_keys=True, indent=4)
else:
jsonpickle.set_encoder_options('json', sort_keys=True)
if os.path.dirname(file):
os.makedirs(os.path.dirname(file), exist_ok=True)
with open(file, 'w') as f:
f.write(jsonpickle.encode(self))
示例2: getJson
# 需要导入模块: import jsonpickle [as 别名]
# 或者: from jsonpickle import set_encoder_options [as 别名]
def getJson(self):
jsonpickle.set_preferred_backend('json')
jsonpickle.set_encoder_options('json', ensure_ascii=False, indent=4, separators=(',', ': '))
return jsonpickle.encode(self)
示例3: getJson
# 需要导入模块: import jsonpickle [as 别名]
# 或者: from jsonpickle import set_encoder_options [as 别名]
def getJson(self):
self.load(None)
jsonpickle.set_encoder_options('json', sort_keys=True, indent=3)
json = jsonpickle.encode(self.data, unpicklable=False)
log.L.debug('Encoded SDP JSON: %s' % json)
return json
示例4: to_json
# 需要导入模块: import jsonpickle [as 别名]
# 或者: from jsonpickle import set_encoder_options [as 别名]
def to_json(self, sort=False):
"""
Get JSON representation of an object
"""
jsonpickle.set_encoder_options('json', sort_keys=sort)
return jsonpickle.encode(self._data())