How do I query a Django model dynamically? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T05:05:22Zhttp://stackoverflow.com/feeds/question/411810http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/411810/how-do-i-query-a-django-model-dynamically1How do I query a Django model dynamically? thebossman2009-01-04T22:32:50Z2009-01-05T09:07:10Z
<p>Is there a way of doing the following?</p>
<p>model = "User"</p>
<p>model.objects.all()</p>
<p>...as opposed to User.objects.all().</p>
<p>EDIT: I am trying to make this call based on command-line input. Is it possible to avoid the import statement, e.g., </p>
<p>model = django.authx.models.User</p>
<p>? Django returns an error, "global name django is not defined."</p>
http://stackoverflow.com/questions/411810/how-do-i-query-a-django-model-dynamically/411814#4118143Answer by a b for How do I query a Django model dynamically? a b2009-01-04T22:34:45Z2009-01-04T22:34:45Z<pre><code>from django.authx.models import User
model = User
model.objects.all()
</code></pre>
http://stackoverflow.com/questions/411810/how-do-i-query-a-django-model-dynamically/411822#411822-2Answer by kigurai for How do I query a Django model dynamically? kigurai2009-01-04T22:40:44Z2009-01-04T22:40:44Z<p>If you have the model name passed as a string I guess one way could be</p>
<pre><code>modelname = "User"
model = globals()[modelname]
</code></pre>
<p>But mucking about with globals() might be a bit dangerous in some contexts. So handle with care :)</p>
http://stackoverflow.com/questions/411810/how-do-i-query-a-django-model-dynamically/411880#4118809Answer by Daniel for How do I query a Django model dynamically? Daniel2009-01-04T23:11:28Z2009-01-05T09:07:10Z<p>I think you're looking for this:</p>
<pre><code>from django.db.models.loading import get_model
model = get_model('app_name', 'model_name')
</code></pre>
<p>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 the apps' models.)</p>
http://stackoverflow.com/questions/411810/how-do-i-query-a-django-model-dynamically/411925#4119251Answer by S.Lott for How do I query a Django model dynamically? S.Lott2009-01-04T23:42:46Z2009-01-04T23:42:46Z<blockquote>
<p>model = django.authx.models.User</p>
<p>? Django returns an error, "global
name django is not defined."</p>
</blockquote>
<p>Django does not return the error. Python does.</p>
<p>First, you MUST import the model. You must import it with</p>
<pre><code>from django.authx.models import User
</code></pre>
<p>Second, if you get an error that <code>django</code> is not defined, then Django is not installed correctly. You must have Django on your <code>PYTHONPATH</code> or installed in your Python lib/site-packages.</p>
<p>To install Django correctly, see <a href="http://docs.djangoproject.com/en/dev/intro/install/#intro-install" rel="nofollow">http://docs.djangoproject.com/en/dev/intro/install/#intro-install</a></p>
http://stackoverflow.com/questions/411810/how-do-i-query-a-django-model-dynamically/411927#4119270Answer by cdleary for How do I query a Django model dynamically? cdleary2009-01-04T23:43:50Z2009-01-04T23:43:50Z<p>Classes are "first class" objects in Python, meaning they can be passed around and manipulated just like all other objects.</p>
<p>Models are classes -- you can tell from the fact that you create new models using class statements:</p>
<pre><code>class Person(models.Model):
last_name = models.CharField(max_length=64)
class AnthropomorphicBear(models.Model):
last_name = models.CharField(max_length=64)
</code></pre>
<p>Both the <code>Person</code> and <code>AnthropomorphicBear</code> identifiers are bound to Django classes, so you can pass them around. This can useful if you want to create helper functions that work at the model level (and share a common interface):</p>
<pre><code>def print_obj_by_last_name(model, last_name):
model_name = model.__name__
matches = model.objects.filter(last_name=last_name).all()
print('{0}: {1!r}'.format(model_name, matches))
</code></pre>
<p>So <code>print_obj_by_last_name</code> will work with either the <code>Person</code> or <code>AnthropomorphicBear</code> models. Just pass the model in like so:</p>
<pre><code>print_obj_by_last_name(model=Person, last_name='Dole')
print_obj_by_last_name(model=AnthropomorphicBear, last_name='Fozzy')
</code></pre>