littletable
littletable copied to clipboard
Add support for using orjson instead of the stdlib json if orjson is installed
Open source package orjson is much faster than the stdlib package.
orjson.dumps compares to json.dumps, but uses whitespace-optimized output by default, so need to qualify use of streaming-related keyword args. orjson.loads compares to json.loads, compatibility TBD