Python, импортируя другие сценарии из других каталогов

import sys
sys.path.insert(0, 'path/to/your/py_file')

import py_file
Thoughtful Turtle