mirror of
https://github.com/simon987/sist2.git
synced 2025-04-04 07:52:59 +00:00
20 lines
477 B
Python
20 lines
477 B
Python
import json
|
|
|
|
files = [
|
|
"schema/mappings.json",
|
|
"schema/settings.json",
|
|
"schema/settings_legacy.json",
|
|
"schema/pipeline.json",
|
|
]
|
|
|
|
|
|
def clean(filepath):
|
|
return filepath.split("/")[-1].replace(".", "_").replace("-", "_")
|
|
|
|
|
|
for file in files:
|
|
with open(file, "r") as f:
|
|
data = json.dumps(json.load(f), separators=(",", ":")).encode()
|
|
data += b'\0'
|
|
print("char %s[%d] = {%s};" % (clean(file), len(data), ",".join(str(int(b)) for b in data)))
|