python make shell script executable code example
Example 1: create exe from python script
pyinstaller --onefile pythonScriptName.py
Example 2: how to run a .exe through python
import os
os.startfile("C:\Documents and Settings\flow_model\flow.exe")