gitextract_7tn2bvqh/ ├── .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