├── .github └── workflows │ ├── publish-dev.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bulk_update_or_create ├── __init__.py ├── __version__.py ├── apps.py └── query.py ├── setup.cfg ├── setup.py ├── tests ├── README.md ├── manage.py ├── pytest.ini ├── requirements.txt ├── settings.py ├── settings_mysql.py ├── settings_postgresql.py ├── tests │ ├── __init__.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── bulk_it.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ └── tests.py └── urls.py └── tox.ini /.github/workflows/publish-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/.github/workflows/publish-dev.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/README.md -------------------------------------------------------------------------------- /bulk_update_or_create/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/bulk_update_or_create/__init__.py -------------------------------------------------------------------------------- /bulk_update_or_create/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0.0' 2 | -------------------------------------------------------------------------------- /bulk_update_or_create/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/bulk_update_or_create/apps.py -------------------------------------------------------------------------------- /bulk_update_or_create/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/bulk_update_or_create/query.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/settings_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/tests/settings_mysql.py -------------------------------------------------------------------------------- /tests/settings_postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/tests/settings_postgresql.py -------------------------------------------------------------------------------- /tests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/management/commands/bulk_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/tests/tests/management/commands/bulk_it.py -------------------------------------------------------------------------------- /tests/tests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/tests/tests/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/tests/tests/models.py -------------------------------------------------------------------------------- /tests/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/tests/tests/tests.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fopina/django-bulk-update-or-create/HEAD/tox.ini --------------------------------------------------------------------------------