mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
8 lines
335 B
Bash
8 lines
335 B
Bash
#/bin/bash
|
|
|
|
echo -n "Python ujson module, DECODE: "
|
|
python -m timeit -s "import ujson; data = open('`dirname $0`/example.json', 'r').read()" 'ujson.loads(data)'
|
|
|
|
echo -n "Python ujson module, ENCODE: "
|
|
python -m timeit -s "import ujson; data = open('`dirname $0`/example.json', 'r').read(); obj = ujson.loads(data)" 'ujson.dumps(obj)'
|