2023-11-15 13:56:37 +01:00
|
|
|
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:
|
2024-01-04 17:03:07 +01:00
|
|
|
msg.dump_json(of, indent=2)
|
2023-11-15 13:56:37 +01:00
|
|
|
|
|
|
|
print("OK")
|