Python Module Imports - Explicit vs Implicit Relative Imports
Last night, when working on my mac, I set up some module imports in my __init__.py 's from MongoProvider import MongoProvider from Settings import Settings etc. I'm unsure of what version of Python is on that machine. I'll edit the question later with that info once I have it. Today, working on a different machine, which is Windows and using Python 3.3.3, my module imports were breaking. By adding an explicit relative import (adding a leading dot), I was able to fix the issue. from .MongoProvider import MongoProvider from .Settings import Settings The trace I'm receiving is: Traceback (most