glib/gio/data-to-c.py
Philip Withnall 905b22a17e py: Reformat all Python files consistently
This commit is the unmodified results of running
```
black $(git ls-files '*.py')
```
with black version 19.10b0. See #2046.

Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
2020-11-17 15:50:07 +00:00

17 lines
399 B
Python
Executable File

#!/usr/bin/env python
import sys
if len(sys.argv) < 4:
print("Usage: {0} <filename> <variable> <output>")
with open(sys.argv[1], "rb") as f:
in_data = f.read().decode("utf-8", "backslashreplace")
b = [r"\x{:02x}".format(ord(c)) for c in in_data]
out_data = 'const char {0}[] = "'.format(sys.argv[2])
out_data += "".join(b) + '";'
with open(sys.argv[3], "w") as f:
f.write(out_data)