Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7959853
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T04:38:16+00:00 2026-06-04T04:38:16+00:00

I have a list, which I would like to bulk_create entries for in the

  • 0

I have a list, which I would like to bulk_create entries for in the database.

How can I do this without looping through the list, which I presume, would take away the point of bulk_create.

For example:

Instead of…

for x in list:
    bulk_create...

How could I…

bulk_create for the entire list at once in an efficient manner

List contains:

list = ['abc', 'def', 'ghi']

It’s simply a list of id’s, not in the form that’s ready to fed directly into bulk_create (not formatted with the entry fields). However, I suppose it would be possible to modify the list before passing it into bulk_create.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T04:38:17+00:00Added an answer on June 4, 2026 at 4:38 am

    bulk_create takes a list of objects as a single arg, in a single call. What you are doing in your example would be the same as looping and doing create()

    Referencing: https://docs.djangoproject.com/en/dev/ref/models/querysets/#django.db.models.query.QuerySet.bulk_create

    aList = [
        Entry(headline="Django 1.0 Released"),
        Entry(headline="Django 1.1 Announced"),
        Entry(headline="Breaking: Django is awesome")
    ]
    Entry.objects.bulk_create(aList)
    

    aList refers to a list of objects that you already have instantiated and need to create in bulk with one query. If for instance you didn’t already have that list of unsaved instances, and you had a list of values, you could then create your list with something like:

    values = ['abc', 'def', 'ghi']
    # a list of unsaved Entry model instances
    aList = [Entry(headline=val) for val in values]
    

    Or maybe you have a list of raw dictionary values that map to the model:

    values = [{headline="abc"}, {headline="def"}, {headline="ghi"}]
    aList = [Entry(**vals) for vals in values]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a list of elements which I would like to make sortable and
I have a dropdown list (FK) which I would like to set and display
I have a List of objects which are ordered. I would like to remove
I have an ASP:Repeater Which I would like to display a list of check
I have List objects which are shown like this: www.mysite.com/lists/123 Where 123 is the
I have two list operations which I would like to ask for help. The
I have a list which looks something like this: mylist = ([(0.1, 0.5),(0.4, 1.0)],
I have a list of lists. I would like to know how I can
I have a list of items with which I would like to view more
I have a list of values in my XML file which I would like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.