show/hide this revision's text 2 added 239 characters in body

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."

show/hide this revision's text 1

How do I query a Django model dynamically?

Is there a way of doing the following?

model = "User"

model.objects.all()

...as opposed to User.objects.all().