Is there a way of doing the following?
model = "User"
model.objects.all()
...as opposed to User.objects.all().
EDIT: I am trying to make this call based on command-line input. Is it possible to avoid the import statement, e.g.,
model = django.authx.models.User
? Django returns an error, "global name django is not defined."
