Pure Python CBOR (de)serializer with extensive tag support
Project description
This library provides encoding and decoding for the Concise Binary Object Representation (CBOR) (RFC 7049) serialization format.
Usage
from cbor2 import *
# Serialize an object as a bytestring
data = dumps(['hello', 'world'])
# Deserialize a bytestring
obj = loads(data)
# Efficiently deserialize from a file
with open('input.cbor', 'rb') as fp:
obj = load(fp)
# Efficiently serialize an object to a file
with open('output.cbor', 'wb') as fp:
dump(obj, fp)
String/bytes handling on Python 2
The str type is encoded as binary on Python 2. If you want to encode strings as text on Python 2, use unicode strings instead.
Date/time handling
CBOR does not support naïve datetimes (that is, datetimes where tzinfo is missing). When the encoder encounters such a datetime, it needs to know which timezone it belongs to. To this end, you can specify a default timezone by passing a datetime.tzinfo instance to dump()/dumps() call as the timezone argument. Decoded datetimes are always timezone aware.
By default, datetimes are serialized in a manner that retains their timezone offsets. You can optimize the data stream size by passing datetime_as_timestamp=False to dump()/dumps(), but this causes the timezone offset information to be lost.
Cyclic (recursive) data structures
By default, both the encoder and decoder support cyclic data structures (ie. containers that contain references to themselves). When serializing, this requires some extra space in the data stream. If you know you won’t have cyclic structures in your data, you can save a little bit of space by turning off the value sharing feature by passing the value_sharing=False option to dump()/dumps().
Customizing encoding/decoding
The encoder allows you to specify a mapping of types to callables that handle the encoding of some otherwise unsupported type. The decoder, on the other hand, allows you to specify a mapping of semantic tag numbers to callables that implement custom transformation logic for tagged values.
Custom encoder and decoder hooks can also be made to support value sharing. For encoder hooks, wrapping them with @cbor2.shareable_encoder is enough. Decoder hooks are slightly more complex. In order to support cyclic references, the decoder must construct a “raw” instance of the target class (usually using __new__()) and then separately decoding and applying the object’s state.
See the docstrings of cbor2.CBOREncoder, cbor2.CBORDecoder and @cbor2.shareable_encoder for details.
Tag support
In addition to all standard CBOR tags, this library supports many extended tags:
Tag |
Semantics |
Python type(s) |
---|---|---|
0 |
Standard date/time string |
datetime.date / datetime.datetime |
1 |
Epoch-based date/time |
datetime.date / datetime.datetime |
2 |
Positive bignum |
int / long |
3 |
Negative bignum |
int / long |
4 |
Decimal fraction |
decimal.Decimal |
5 |
Bigfloat |
decimal.Decimal |
28 |
Mark shared value |
N/A |
29 |
Reference shared value |
N/A |
30 |
Rational number |
fractions.Fraction |
35 |
Regular expression |
_sre.SRE_Pattern (result of re.compile(...)) |
36 |
MIME message |
email.message.Message |
37 |
Binary UUID |
uuid.UUID |
Project links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cbor2-3.0.1.tar.gz
.
File metadata
- Download URL: cbor2-3.0.1.tar.gz
- Upload date:
- Size: 16.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52f31226f47f2700f32290aebcab178d82cd65c43864a5a31d171c05b2f85a0f |
|
MD5 | 83bed9cc480af628f758bf9db46368bc |
|
BLAKE2b-256 | 760512a34d879e5bf65fa52066bfdac8e5bd5c067bd8f44f9e69d109304e95e0 |
File details
Details for the file cbor2-3.0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: cbor2-3.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 48.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95158ecc11b643a0e49baea1707203bda0d0f6a2dc518e8d2b1ef270e7e35fa9 |
|
MD5 | e76c6fcfa8ec743c151ad8b1ca6399f2 |
|
BLAKE2b-256 | c442c2b3ae67c306236afb3db5a9d45891761ec382ac1f93a62a0f0f8217a91e |