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
As of Django 1.4, there exists a bulk_create() method on the QuerySet object, which allows for inserting a list of objects in a single query. For more info, see:
bulk_create()