importing functions from another file in python 2 code example
Example 1: how to import all functions from another python file
from scripts import *
Example 2: python include function from another file
from filename_without_py_extension import *
functionFromIncludedFile()