Skip to content
Snippets Groups Projects
Commit a3cd349e authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

tools/mpy_bin2res: Tools to convert binary resources to Python module.

Afterwards, they can be access using pkg_resource module from
micropython-lib.
parent 653a0c2d
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
#
# This tool converts binary resource files passed on the command line
# into a Python source file containing data from these files, which can
# be accessed using standard pkg_resources.resource_stream() function
# from micropython-lib:
# https://github.com/micropython/micropython-lib/tree/master/pkg_resources
#
import sys
print("R = {")
for fname in sys.argv[1:]:
with open(fname, "rb") as f:
b = f.read()
print("%r: %r," % (fname, b))
print("}")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment