I get an ImportError exception somewhere in the code, but the same module can be imported safely at startup of the application. I\'m curious to see which paths
Sys.path is a list of all the paths Python looks through when finding imports. If you want to add another path to a directory containing one or more python files, you can use: sys.path.append('path/to/directory').