19 lines
498 B
Python
19 lines
498 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from benedict.serializers import JSONSerializer
|
|
|
|
|
|
def dump(obj, **kwargs):
|
|
serializer = JSONSerializer()
|
|
options = {'indent': 4, 'sort_keys': True}
|
|
options.update(**kwargs)
|
|
try:
|
|
output = serializer.encode(obj, **options)
|
|
return output
|
|
except TypeError as error:
|
|
sort_keys = options.pop('sort_keys', False)
|
|
if sort_keys:
|
|
output = serializer.encode(obj, **options)
|
|
return output
|
|
raise error
|