gitextract_1_zfvdao/ ├── .coveragerc ├── .flake8 ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── release.yml ├── .gitignore ├── .pylintrc ├── .python-version ├── .readthedocs.yaml ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── ddf/ │ └── __init__.py ├── django_dynamic_fixture/ │ ├── __init__.py │ ├── ddf.py │ ├── decorators.py │ ├── django_helper.py │ ├── fdf.py │ ├── fields.py │ ├── fixture_algorithms/ │ │ ├── __init__.py │ │ ├── default_fixture.py │ │ ├── random_fixture.py │ │ ├── sequential_fixture.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── abstract_test_generic_fixture.py │ │ │ ├── test_default_fixture.py │ │ │ ├── test_default_fixture_postgres.py │ │ │ ├── test_random_fixture.py │ │ │ ├── test_sequential_fixture.py │ │ │ └── test_unique_random_fixture.py │ │ └── unique_random_fixture.py │ ├── global_settings.py │ ├── models.py │ ├── models_sample_app.py │ ├── models_test.py │ ├── models_third_party.py │ ├── script_ddf_checkings.py │ └── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── test_ddf.py │ ├── test_ddf_checkings.py │ ├── test_ddf_copier.py │ ├── test_ddf_custom_fields.py │ ├── test_ddf_custom_models.py │ ├── test_ddf_geo.py │ ├── test_ddf_signals.py │ ├── test_ddf_teaching_and_lessons.py │ ├── test_decorators.py │ ├── test_django_helper.py │ ├── test_fdf.py │ ├── test_global_settings.py │ ├── test_mask.py │ ├── test_module_ddf_shortcut.py │ ├── test_sample_app.py │ └── test_wrappers.py ├── docs/ │ ├── Makefile │ └── source/ │ ├── _static/ │ │ └── coverage.html │ ├── about.rst │ ├── change_log.rst │ ├── conf.py │ ├── data.rst │ ├── data_fixtures.rst │ ├── ddf.rst │ ├── fdf.rst │ ├── index.rst │ ├── more.rst │ ├── overview.rst │ ├── patterns.rst │ └── settings.rst ├── manage.py ├── pytest.ini ├── queries/ │ ├── __init__.py │ ├── count_queries_on_save.py │ └── management/ │ ├── __init__.py │ └── commands/ │ ├── __init__.py │ └── count_queries_on_save.py ├── requirements-dev.txt ├── requirements.txt ├── settings_ddf.py ├── settings_mysql.py ├── settings_postgres.py ├── settings_sqlite.py ├── setup.py └── tox.ini