Is is possible to do something similar to this with a list, dictionary or something else even?

data_dict = {
    'title' : 'awesome title',
    'body' : 'great body of text',
}
Model.objects.create(data_dict)

Even better if I can extend it

Model.objects.create(data_dict, extra='hello', extra2='world)
link|improve this question
feedback

1 Answer

up vote 27 down vote accepted

If title and body are fields in your model, then you can deliver the keyword arguments in your dictionary using the ** operator.

Assuming your model is called MyModel:

# create instance of model
m = MyModel(**data_dict)
# don't forget to save to database!
m.save()

As for your second question, the dictionary has to be the final argument. Again, extra and extra2 should be fields in the model.

m2 =MyModel(extra='hello', extra2='world', **data_dict)
m2.save()
link|improve this answer
4  
Thanks, that is exactly what I was looking to do. Also, as a side note just based off your post. You don't have to call the save method when using Model.objects.create(**data_dict). You probably already know this but just a heads up. – clarence Oct 15 '09 at 14:00
1  
I've not used the objects.create method before, so you've taught me something new. – Alasdair Oct 15 '09 at 14:13
2  
also objects.create returns a pointer to the new model, with a valid pk filled in. This means you can immediately use it to build related models. – Tom Leys Oct 16 '09 at 6:21
I got bit by ForeignKeys. If your model has a ForeignKey called owner, then your data_dict should have an owner_id field. But django.forms.model_to_dict() returns a dict with an owner field. So you can't do MyModel(**model_to_dict(my_instance)); you have to rename the owner field to owner_id. – cberzan Mar 2 at 1:45
feedback

Your Answer

 
or
required, but never shown