Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save goutomroy/9092f131c3495007bd0fe99cdec786d4 to your computer and use it in GitHub Desktop.
Save goutomroy/9092f131c3495007bd0fe99cdec786d4 to your computer and use it in GitHub Desktop.
# Don't
for i in range(20):
Blog.objects.create(name="blog"+str(i), headline='tagline'+str(i))
# Do
blogs = []
for i in range(20):
blogs.append(Blog(name="blog"+str(i), headline='tagline'+str(i)))
Blog.objects.bulk_create(blogs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment