On Thu, 2010-03-25 at 05:53 -0700, Tom wrote: > Hello! > I am writing a python app that is basically a wrapper for > another .exe. I want to compile the python app into a .exe using > PyInstaller which I can do. Is there a way to "bundle" extra files > (Like other .exe's or text files) into the pyInstaller .exe that it > creates, and a way to "extract" them from the .exe from within python?
Sure: http://www.pyinstaller.org/export/latest/tags/1.4/doc/Manual.html?format=raw#accessing-data-files If you instead needed something to dynamically extract them from the executable on request, it can be done as well, but it is a little bit harder. Let me know if the link above is enough. -- Giovanni Bajo :: [email protected] Develer S.r.l. :: http://www.develer.com My Blog: http://giovanni.bajo.it Last post: C++ and copy-on-write data structures -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
