flynn 是 Python 语言对 CBOR 对象编码格式的支持。
示例代码:
>>> flynn.dumps([1, [2, 3]]) b'\x82\x01\x82\x02\x03' >>> flynn.loads(b'\x82\x01\x82\x02\x03') [1, [2, 3]]