Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

michaelmior/pycbor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pycbor

Build Status

pycbor supports all major types of RFC 7049 with the exception of semantic tagging. There are probably some ways in which pycbor isn't strictly compliant, but it mostly works

Usage

>>> pycbor.encode([1, 2, 3])
b'\x83\x01\x02\x03'

>>> pycbor.decode(b'\x83\x01\x02\x03')
[1, 2, 3]

About

A Python 3 library for working with RFC 7049 Concise Binary Object Representation (CBOR)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages