I haven\'t seen any thing on this topic in Django\'s online documents.
I am trying to save a list of objects to database, but what I can do is loop through the list
From Django 1.4 exists bulk_create(), but, always but.
bulk_create()
You need to be careful, using bulk_create() it wont call instance save() method internally.
save()
As django docs says
The model’s save() method will not be called
So, if you are overriding save method, (as my case was) you can't use bulk_create.