On an import python looks for the module in the directories specified in
sys.path.
The documentation on sys.path says:
"As initialized upon program startup, the first item of this list is the
directory containing the script that was used to invoke the Python
interpreter." [1]
So it`s importa
Trying to do some OO Python with files in different directories.
I have a blank __init__.py in each directory.
It is my assumption that having an __init__.py marks the directory as a module.
I am trying to run Controller.py from the command line.
I would assume this has already been solved but cou