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"}
|
Here's an example of create using your dictionary d:
To update an existing model, you will need to use the QuerySet
|
|||
|
|
|
Use |
|||||
|
|
If you know you want to create it:
Assuming you need to check for an existing instance, you can find it with get or create:
As mentioned in another answer, you can also use the
|
||||
|
|
**operator in the Python language reference manual. docs.python.org/reference/expressions.html#calls – S.Lott Mar 31 '11 at 17:39