0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-18 19:35:20 +00:00
bird/mq-scraps/test-ip.py
2023-12-10 14:35:35 +01:00

9 lines
134 B
Python

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