import python script from another folder code example
Example 1: import python module from another directory
import sys
sys.path.append('/path/to/application/app/folder')
import file
Example 2: import file from another directory python
import sys
sys.path.insert(1, '/path/to/application/app/folder')
import file
Example 3: how to import file from another directory in python
import sys
sys.path.append('/path/to/application/app/folder')
import your_file
Example 4: how to import somthing from another directory in pyhon
import sys
sys.path.insert(1, '/path/to/application/app/folder')
import file