0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-08 20:28:43 +00:00
bird/mq-scraps/test-ip.py

9 lines
134 B
Python
Raw Normal View History

import cbor2
import json
with open("test-ip.cbor", "rb") as sf:
loaded = cbor2.load(sf)
print(loaded)
print(json.dumps(loaded))