Python, importowanie innych scenariuszy z innych katalogów

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

import py_file
Thoughtful Turtle