1import sys
2# sys.path is a list of absolute path strings
3sys.path.append('/path/to/application/app/folder')
4
5import file
1#place the file to be imported, named <imported file>, to the same folder as the python document
2#defined function within the <imported file> is <function>
3from <imported file> import <function>
4#Note that <function> has no parenthesis at the end