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