importing from another directory python code example
Example 1: import python module from another directory
import sys
# sys.path is a list of absolute path strings
sys.path.append('/path/to/application/app/folder')
import file
Example 2: import folder from another folder python
sys.path.insert(1, '/path/to/application/app/folder')