Python, importing other scripts from other directories code example
Example: Python, importing other scripts from other directories
import sys
sys.path.insert(0, 'path/to/your/py_file')
import py_file
import sys
sys.path.insert(0, 'path/to/your/py_file')
import py_file