Re: Importing Classes from child folders.

2013-01-17 Thread Tobias M.
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

Importing Classes from child folders.

2013-01-16 Thread monosij . forums
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