python import .py from another folder 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 python file from another directory
from application.app.folder.file import func_name