how to import a folder name in python code example
Example: how to import somthing from another directory in pyhon
# some_file.py
import sys
# insert at 1, 0 is the script path (or '' in REPL)
sys.path.insert(1, '/path/to/application/app/folder')
import file