#!/usr/bin/env python """Load all of the modules in the models directory.""" import os for module in os.listdir(os.path.dirname(__file__)): if module != '__init__.py' and module[-3:] == '.py': __import__(module[:-3], locals(), globals())