mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 20:28:43 +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))
|