mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-22 09:41:54 +00:00
14 lines
190 B
Python
14 lines
190 B
Python
import cbor
|
|
#import json
|
|
import sys
|
|
|
|
import JSON_CBOR
|
|
|
|
#print(sys.argv[1])
|
|
|
|
msg = JSON_CBOR.Message(sys.argv[1], "cbor")
|
|
with open(sys.argv[2], "w") as of:
|
|
msg.dump_xml(of)
|
|
|
|
print("OK")
|