Skip to content

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

Notifications You must be signed in to change notification settings

renej-github/pycbor

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 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

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%