Codebase list python-cbor / debian/latest cbor / __init__.py
debian/latest

Tree @debian/latest (Download .tar.gz)

__init__.py @debian/latest

0314c94
 
 
 
 
 
 
 
 
 
 
948e5c0
0314c94
 
 
 
 
948e5c0
0314c94
#!python

try:
    # try C library _cbor.so
    from ._cbor import loads, dumps, load, dump
except:
    # fall back to 100% python implementation
    from .cbor import loads, dumps, load, dump

from .cbor import Tag
from .tagmap import TagMapper, ClassTag, UnknownTagException
from .VERSION import __doc__ as __version__

__all__ = [
    'loads', 'dumps', 'load', 'dump',
    'Tag',
    'TagMapper', 'ClassTag', 'UnknownTagException',
    '__version__',
]