Is this the recommended way to load a module from a sub directory?
import imp
a, b ,c = imp.find_module('fruit')
imp.load_module(' ', a, b, c)
import fruit
fruit.apple()
I have also noticed other examples changing the home directory instead
import sys
sys.path[0:0] = '/folder1'
import fruit