Before start I have been trying to accomplish it for some time now, but I had no luck. I'm trying to create my own python package, which I will import the modules in it, in separate files in my project. I tried to add my project's directory to pythonpath via 'sys' but still the mod_wsgi do not recognize it:
import sys
sys.path.append('/var/www/')
from core.core import main
And when trying:
ImportError: No module named core.core
Any help would be appreciated