I think you're looking for this:
from django.db.models.loading import get_model
models model = get_model('app_name', 'model_name')
There are other methods, of course, but this is the way I'd handle it if you don't know what models file you need to import into your namespace. (Note there's really no way to safely get a model without first knowing what app it belongs to. Look at the source code to loading.py if you want to test your luck at iterating over all app's the apps' models.)
