mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-03-20 13:27:05 +00:00
12 lines
167 B
Python
12 lines
167 B
Python
import sys
|
|
|
|
import JSON_CBOR
|
|
|
|
#print(sys.argv[1])
|
|
|
|
msg = JSON_CBOR.Message(sys.argv[1], "json")
|
|
with open(sys.argv[2], "wb") as of:
|
|
msg.dump_cbor(of)
|
|
|
|
print("OK")
|