Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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"}
share|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

3 Answers

up vote 11 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)
share|improve this answer

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

share|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

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 attr, value 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()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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