loongson/pypi/: cbor-1.0.0 metadata and description

Homepage Simple index Mirror page

RFC 7049 - Concise Binary Object Representation

author Brian Olson
author_email bolson@bolson.org
classifiers
  • Development Status :: 5 - Production/Stable
  • Intended Audience :: Developers
  • License :: OSI Approved :: Apache Software License
  • Operating System :: OS Independent
  • Programming Language :: Python :: 2.7
  • Programming Language :: Python :: 3.4
  • Programming Language :: Python :: 3.5
  • Programming Language :: C
  • Topic :: Software Development :: Libraries :: Python Modules
license Apache
File Tox results History
cbor-1.0.0-cp311-cp311-manylinux_2_36_loongarch64.manylinux_2_38_loongarch64.whl
Size
55 KB
Type
Python Wheel
Python
3.11

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.