Python implementation of the DAG-CBOR codec.
Project description
dag-cbor
: A Python implementation of DAG-CBOR
This is a fully compliant Python implementation of the DAG-CBOR codec, a subset of the Concise Binary Object Representation (CBOR) supporting the IPLD Data Model and enforcing a unique (strict) encoded representation of items.
Table of Contents
Install
You can install this package with pip
:
pip install dag-cbor
Usage
The core functionality of the library is performed by the encode
and decode
functions:
>>> import dag_cbor
>>> dag_cbor.encode({'a': 12, 'b': 'hello!'})
b'\xa2aa\x0cabfhello!'
>>> dag_cbor.decode(b'\xa2aa\x0cabfhello!')
{'a': 12, 'b': 'hello!'}
The random
module contains functions to generate random data compatible with DAG-CBOR encoding:
>>> import pprint
>>> import dag_cbor
>>> options = dict(min_codepoint=0x41, max_codepoint=0x5a, include_cid=False)
>>> with dag_cbor.random.rand_options(**options):
... for d in dag_cbor.random.rand_dict(3):
... pprint.pp(d)
...
{'BIQPMZ': b'\x85\x1f\x07/\xcc\x00\xfc\xaa',
'EJEYDTZI': {},
'PLSG': {'G': 'JFG',
'HZE': -61.278,
'JWDRKRGZ': b'-',
'OCCKQPDJ': True,
'SJOCTZMK': False},
'PRDLN': 39.129,
'TUGRP': None,
'WZTEJDXC': -69.933}
{'GHAXI': 39.12,
'PVUWZLC': 4.523,
'TDPSU': 'TVCADUGT',
'ZHGVSNSI': [-57, 9, -78.312]}
{'': 11, 'B': True, 'FWD': {}, 'GXZBVAR': 'BTDWMGI', 'TDICHC': 87}
For further information, please refer to the API documentation.
API
The API documentation for this package is automatically generated by pdoc.
Contributing
Please see the contributing file.
License
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 dag-cbor-0.0.7.post3.tar.gz
.
File metadata
- Download URL: dag-cbor-0.0.7.post3.tar.gz
- Upload date:
- Size: 52.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c37b6c40a812a671c4b81094ee9cb937cb725233da5ccf9c78061063e53fbdb8 |
|
MD5 | 7c8918fb294549b5129d5b3dc4b2ecbc |
|
BLAKE2b-256 | 0d271c7eafb5b639a93f79c647d8fd0a47129bd3c1dab3510f55c46af81b31c1 |
File details
Details for the file dag_cbor-0.0.7.post3-py3-none-any.whl
.
File metadata
- Download URL: dag_cbor-0.0.7.post3-py3-none-any.whl
- Upload date:
- Size: 16.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5706ecdeb234e6a84812252e3d88b470d22b232370ff97e7a8d1902aa6f6263b |
|
MD5 | 89b54911372140615de4713b5682ebd0 |
|
BLAKE2b-256 | 6ef7077189f9d450c4d14ef3568dada493d6f3ebfd89e3f350feeabb1833fefa |