Switch from `orjson` to Python standard library `json` module
Reasons
- orjson does not support standard keyword arguments of
json.loads/dumps
functions likesort_keys
or ensure_ascii- it provides options with different names, but I prefer not attaching the source code to a particular implementation
-
json.dumps
returnsbytes
instead ofstr
which would imply other changes - ujson does not work with big values (cf dbnomics-fetchers/management#712 (closed))
- I'm not sure that we have a performance bottleneck with json decoding (encoding is done by convert scripts)
Until something better appears, let's stick with default Python json
module.