You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
431 B
19 lines
431 B
5 years ago
|
try:
|
||
|
import simplejson as json
|
||
|
except ImportError:
|
||
|
import json
|
||
|
|
||
|
|
||
|
class _CompactJSON(object):
|
||
|
"""Wrapper around json module that strips whitespace."""
|
||
|
|
||
|
@staticmethod
|
||
|
def loads(payload):
|
||
|
return json.loads(payload)
|
||
|
|
||
|
@staticmethod
|
||
|
def dumps(obj, **kwargs):
|
||
|
kwargs.setdefault("ensure_ascii", False)
|
||
|
kwargs.setdefault("separators", (",", ":"))
|
||
|
return json.dumps(obj, **kwargs)
|