Possible Duplicate:
Python package structure
Hello, I'm looking to import a python file that I have in a sub-directory that is below the root of my main file. e.g.
import ../library/utils.py
When I put that into my code and run it I get a compile error.
Is there a way to include files from below the main file root directory or does it have to be in a sub-directory in the root?
Thanks for your help.