Possible Duplicate:
How to do relative imports in Python?
So I'm trying to include a module that's a folder up from my python file and then multiple folders in.
So the folder hierarchy goes as:
\Folder\
\Folder\First\
\Folder\First\myPythonFile.py
\Folder\Second\
\Folder\Second\AnotherFolder\
\Folder\Second\AnotherFolder\addedFile.py
I want to include the addedFile.py into my myPythonFile.py. I'm not sure how this is accomplished.