I have a directory structure like so:
|- project
|- commands.py
|- Modules
| |- __init__.py
| |- base.py
| \- build.py
\- etc....
I have the following code in __init__.py
commands = []
hooks = []
def load_modules():
""" dynamically loads commands from the /modules subdirectory """
path = "\\".join(os.path.abspath(__file__).split("\\")[:-1])
modules = [f for f in os.listdir(path) if f.endswith(".py") and f != "__init__.py"]
print modules
for file in modules:
try:
module = __import__(file.split(".")[0])
print module
for obj_name in dir(module):
try:
potential_class = getattr(module, obj_name)
if isinstance(potential_class, Command):
#init command instance and place in list
commands.append(potential_class(serverprops))
if isinstance(potential_class, Hook):
hooks.append(potential_class(serverprops))
except:
pass
except ImportError as e:
print "!! Could not load %s: %s" % (file, e)
print commands
print hooks
I'm trying to get __init__.py to load the appropriate commands and hooks into the lists given, however i always hit an ImportError at module = __import__(file.split(".")[0]) even though __init__.py and base.py etc are all in the same folder. i have verified that nothing in any of the module files requires anything in __init__.py, so i'm really at a loss of what to do.

__import__has quite a few fiddly bits you need to be aware of, especially to do withfromlist. Try searching for that and see if you can figure it out. – Chris Morgan Dec 21 '10 at 4:05path = os.path.dirname(os.path.abspath(__file__))(more correct and incidentally cross-platform) – Chris Morgan Dec 21 '10 at 4:09load_modules()invoked? – martineau Dec 21 '10 at 8:40