yet another json libs using yyjson
Project description
pyyjson
Yet another Json Parser for Python
- based on yyjson bindings from @TkTech's (py_yyjson)
- original c library: yyjson
- benchmarks are based on ultrajson
Supports
it supports standard json
lib's
- dumps
- loads
- dump
- load
functions
loads examples
>>> import pyyjson
>>> pyyjson.loads("[1,2,3]")
[1, 2, 3]
>>> pyyjson.loads('[{"a":"b"}, 3, 4]')
[{'a': 'b'}, 3, 4]
dumps example
>>> pyyjson.dumps([{'a': 'b'}, 3, 4])
'[{"a":"b"},3,4]'
load example
load
take either string or file object. If string is given, it is assumed that it's a path to json file
>>> import pyyjson
>>> pyyjson.load("simple_json.json") # in "tests/" directory
{'a': 1, 'b': 2, 'c': 3}
dump example
dump
take either string or file object. If string is given, it is assumed that it's a path to save the file
>>> import pyyjson
>>> pyyjson.dump({'a': 1, 'b': 2, 'c': 3}, "simple_json.json")
Benchmarks
each elements in cols denotes "calls/sec". Test suite is adapted from ujson's benchmark format.
content | json | ujson | orjson | pyyjson(mine) | |
---|---|---|---|---|---|
Arr of 256 doubles | ENCODE | 10119 | 35361 | 170829 | 44925 |
Arr of 256 dobules | DECODE | 28684 | 54593 | 170383 | 155127 |
Arr of 256 UTF-8 string | ENCODE | 5247 | 7344 | 45684 | 8554 |
Arr of 256 UTF-8 String | DECODE | 2838 | 5223 | 7248 | 6424 |
Arr of 256 strings | ENCODE | 36624 | 59568 | 216707 | 87624 |
Arr of 256 strings | DECODE | 66842 | 66960 | 100252 | 98242 |
Medium complex object | ENCODE | 9948 | 22344 | 80465 | 30888 |
Medium complex object | DECODE | 17183 | 28733 | 45008 | 29267 |
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyyjson-0.2.0.tar.gz
(97.9 kB
view details)
File details
Details for the file pyyjson-0.2.0.tar.gz
.
File metadata
- Download URL: pyyjson-0.2.0.tar.gz
- Upload date:
- Size: 97.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60fa6f0d7669c7c53f33f43ae77aadffda60b10532bfa4e9533ed76cd0f26c71 |
|
MD5 | 196c59dc82061abb04b50fe62c6e06d0 |
|
BLAKE2b-256 | a83230dfcb761dfaf295866a102b986b9b8ebca941f85e1eab0d071c5af5ea1f |