I have ten .py
scripts that all function as one program. I call these scripts with the following code:
def tkinter2():
ret = os.system('python delete_order.py')
if ret:
load_data()
My issue is that I want to combine all of these scripts into one script, then make it one .exe
file with pyinstaller
.
My issue is that every script has a different tkinter
to open and separate information to extract from my database. It might be as simple as defining variables and reordering my script into one, but that would be a much larger task to evaluate single-handed.
If it would be possible for me to wrap up(so to speak) all of these scripts into one bundle installation file to distribute, that would be the ideal, with minimal impact on clients.