Simple question:
I have a python program which launches an executable.
The launcher uses optparse module to setup the run and lauch the binary through shell.
Is it possible to bundle the laucher and the binary into a single package? Platform of interest is Linux.
asked May 15, 2012 at 5:18
Anycorn
51.9k45 gold badges173 silver badges267 bronze badges
1 Answer 1
using pyinstaller for example you could add the executable file as a resource file, it extracts the resources to a temp folder, from there you can access your resource files as you want
Sign up to request clarification or add additional context in comments.
Comments
lang-py