ext_json.py
14 lines
| 294 B
| text/x-python
|
PythonLexer
r1250 | import json as stdlib_json | |||
try: | ||||
# we keep simplejson for having dump functionality still | ||||
# orjson doesn't support it | ||||
import simplejson as sjson | ||||
except ImportError: | ||||
sjson = stdlib_json | ||||
try: | ||||
import orjson | ||||
import orjson as json | ||||
except ImportError: | ||||
json = stdlib_json | ||||