I have it
import sys
sys.path.append('extra_dir')
import extra_module
It works fine under the Windows XP App Engine SDK (offline)
But when deployed on the Internet, it gives me <type 'exceptions.ImportError'>what I’m missing to deploy it on the Internet?
source
share