cbor_py icon indicating copy to clipboard operation
cbor_py copied to clipboard

CBOR rfc7049 for Python

Results 19 cbor_py issues
Sort by recently updated
recently updated
newest added

If you download the cbor tarball from Pypi (https://files.pythonhosted.org/packages/9b/99/01c6a987c920500189eb74a291bd3a388e6c7cf85736bb6b066d9833315e/cbor-1.0.0.tar.gz) there is no `LICENSE` file: ``` $ tar ztvf cbor-1.0.0.tar.gz drwxr-xr-x 0 bolson 501 0 9 Feb 2016 cbor-1.0.0/ drwxr-xr-x 0...

Fixes broken test_sortkeys() issue #6 Adds cbor/tests to packages for proper installation testing. Adds python 3.6, 3.7, 3.8 to setup.py (tested, passing) Replaces deprecated logger.warn() calls

The CBOR format has self-descriptive length, so many of its elements can be placed in sequence, or in a stream. For that I find a generator a useful concept. I...

Updated the README.md to use text similar to that listed on PyPI, with some further recommendations aimed at readability.

Including more recent Python versions in the classifiers, as used in PyPI releases. Also added a generic Python classifier. While I've not used the current cbor 1.0.0 with Python 3.6,...

Updated the repository location to GitHub (instead of Bitbucket), so that a new release might update the PyPI listed homepage as well.

Fixed some typos in various places, mostly comments.

Add a missing check for a zero length bytes string inside loads() and raise a ValueError in that case. Previously, the empty string was allowed to propagate, resulting in an...

When cooperate with other language, I need to use encoding list with variable length encoding, currently we don't have a way to do this. I have two approaches in mind:...

Implemented option 2 of [this issue](https://github.com/brianolson/cbor_py/issues/9). So ``cbor.dumps(cbor.VarList([1,2,3]))`` will use variable length encoding.