mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-01-03 07:31:54 +00:00
12 lines
166 B
Python
12 lines
166 B
Python
|
import sys
|
||
|
|
||
|
import JSON_CBOR
|
||
|
|
||
|
#print(sys.argv[1])
|
||
|
|
||
|
msg = JSON_CBOR.Message(sys.argv[1], "xml")
|
||
|
with open(sys.argv[2], "wb") as of:
|
||
|
msg.dump_cbor(of)
|
||
|
|
||
|
print("OK")
|