Suppose I have a model like this:

class Book(models.Model):
    num_pages = ...
    author = ...
    date = ...

Can I create a dictionary, and then insert or update the model using it?

d = {"num_pages":40, author:"Jack", date:"3324"}
link|improve this question

1  
Yes. Try it. Look up the ** operator in the Python language reference manual. docs.python.org/reference/expressions.html#calls – S.Lott Mar 31 '11 at 17:39
possible duplicate of Update model django through kwargs – S.Lott Mar 31 '11 at 19:02
feedback

3 Answers

up vote 6 down vote accepted

Here's an example of create using your dictionary d:

Book.objects.create(**d)

To update an existing model, you will need to use the QuerySet filter method. Assuming you know the pk of the Book you want to update:

Book.objects.filter(pk=pk).update(**d)
link|improve this answer
feedback

Use ** for creating a new model. Loop through the dictionary and use setattr() in order to update an existing model.

link|improve this answer
Huh? Can you give an example? So, I would have to write a custom function that loops through the dictionary? – TIMEX Mar 31 '11 at 18:38
@TIMEX: Please read. docs.python.org/reference/expressions.html#calls is very clear on how this works. – S.Lott Mar 31 '11 at 19:02
feedback

If you know you want to create it:

Book.objects.create(**d)

Assuming you need to check for an existing instance, you can find it with get or create:

instance, created = Book.objects.get_or_create(slug=slug, defaults=d)
if not created:
    for value,attr in d.iteritems(): 
        setattr(instance, attr, value)
    instance.save()

As mentioned in another answer, you can also use the update function on the queryset manager, but i believe that will not send any signals out (which may not matter to you if you aren't using them). However, you probably shouldn't use it to alter a single object:

Book.objects.filter(id=id).update()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.