python - py2exe with different parts of apps -
let's have 5 different python files: main.py, first.py, second.py, third.py, last.py
each of files, after main.py
, different through button on main.py
's screen. know how use py2exe:
from distutils.core import setup import py2exe setup(console=['main.py'])
now, how compile of these exe files such still use buttons open other .py files?
you compile each file seperately exe file , modify code in main.py call exe files instead of functions in .py files.
Comments
Post a Comment