add module from other folder python code example
Example 1: import files from another folder python
import sys
sys.path.insert(1, '/path/to/application/app/folder')
import file
Example 2: importing python module from different directory
import sys
sys.path.append('/path/to/python/module/not/in/syspath')
import module
Example 3: import python file from another directory
from application.app.folder.file import func_name
Example 4: importing python modules from a folder
from <imported file> import <function>