mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
e37c1f30a4
An implementation of RFC 7049 - Concise Binary Object Representation (CBOR). CBOR is comparable to JSON, has a superset of JSON's ability, but serializes to a binary format which is smaller and faster to generate and parse. The two primary functions are cbor.loads() and cbor.dumps(). This library includes a C implementation which runs 3-5 times faster than the Python standard library's C-accelerated implementanion of JSON. This is also includes a 100% Python implementation. WWW: https://pypi.org/project/cbor/ WWW: https://bitbucket.org/bodhisnarkva/cbor
14 lines
564 B
Plaintext
14 lines
564 B
Plaintext
An implementation of RFC 7049 - Concise Binary Object Representation (CBOR).
|
|
|
|
CBOR is comparable to JSON, has a superset of JSON's ability, but serializes to
|
|
a binary format which is smaller and faster to generate and parse.
|
|
|
|
The two primary functions are cbor.loads() and cbor.dumps().
|
|
|
|
This library includes a C implementation which runs 3-5 times faster than the
|
|
Python standard library's C-accelerated implementanion of JSON. This is also
|
|
includes a 100% Python implementation.
|
|
|
|
WWW: https://pypi.org/project/cbor/
|
|
WWW: https://bitbucket.org/bodhisnarkva/cbor
|