mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
9 lines
134 B
Python
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))
|