mirror of
https://github.com/simon987/sist2.git
synced 2025-04-04 07:52:59 +00:00
15 lines
336 B
Python
15 lines
336 B
Python
files = [
|
|
"schema/mappings.json",
|
|
"schema/settings.json",
|
|
]
|
|
|
|
|
|
def clean(filepath):
|
|
return filepath.split("/")[-1].replace(".", "_").replace("-", "_")
|
|
|
|
|
|
for file in files:
|
|
with open(file, "rb") as f:
|
|
data = f.read()
|
|
print("char %s[%d] = {%s};" % (clean(file), len(data), ",".join(str(int(b)) for b in data)))
|