Skip to content

Instantly share code, notes, and snippets.

@Flexonze
Flexonze / test_pgbulk.py
Last active January 19, 2023 21:02
django-pgbulk vs Django's bulk_create and bulk_update
from myapp.models import MyModel
from django.test import TestCase
import pgbulk
from time import perf_counter
class TestPgBulk(TestCase):
@classmethod
def setUpTestData(cls):
cls.number_of_objects = 25_000