Python import file
Avoid installing modules and just import them
import os, sys
cmd_folder = os.path.dirname(os.path.abspath(__file__))
if cmd_folder not in sys.path:
sys.path.insert(0, cmd_folder)
import moduleName
Source: http://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder