Other PyInstaller examples
Use this to see where does the packaged version of our code look for modules:
examples/package/syspath.py
import sys print(sys.path)
Use this to see how to pass command line parameters to the packaged exe:
examples/package/cli.py
import sys print(sys.argv)