├── .bumpversion.cfg ├── .coveragerc ├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── .isort.cfg ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── README.rst ├── VERSION ├── django_fakery ├── __init__.py ├── blueprint.py ├── compat.py ├── exceptions.py ├── faker_factory.py ├── fakes.py ├── field_mappings.py ├── lazy.py ├── plugin.py ├── py.typed ├── rels.py ├── shortcuts.py ├── types.py ├── utils.py └── values.py ├── docs ├── Makefile ├── blueprints.rst ├── conf.py ├── custom_fields.rst ├── get_or_make.rst ├── get_or_update.rst ├── hooks.rst ├── index.rst ├── lazies.rst ├── make.bat ├── nonpersistantinstances.rst ├── quickstart.rst ├── relationships.rst ├── seeding.rst └── shortcuts.rst ├── mypy.ini ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── blueprints.py ├── migrations ├── 0001_initial.py ├── 0002_auto_20210712_1723.py └── __init__.py ├── models.py ├── runtests.py ├── settings.py ├── test_blueprints.py ├── test_custom_fields.py ├── test_factory.py ├── test_gis.py ├── test_postgres.py ├── test_shortcuts.py ├── test_utils.py └── urls.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/.isort.cfg -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/README.rst -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 4.1.3 2 | -------------------------------------------------------------------------------- /django_fakery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/__init__.py -------------------------------------------------------------------------------- /django_fakery/blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/blueprint.py -------------------------------------------------------------------------------- /django_fakery/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/compat.py -------------------------------------------------------------------------------- /django_fakery/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/exceptions.py -------------------------------------------------------------------------------- /django_fakery/faker_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/faker_factory.py -------------------------------------------------------------------------------- /django_fakery/fakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/fakes.py -------------------------------------------------------------------------------- /django_fakery/field_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/field_mappings.py -------------------------------------------------------------------------------- /django_fakery/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/lazy.py -------------------------------------------------------------------------------- /django_fakery/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/plugin.py -------------------------------------------------------------------------------- /django_fakery/py.typed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /django_fakery/rels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/rels.py -------------------------------------------------------------------------------- /django_fakery/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/shortcuts.py -------------------------------------------------------------------------------- /django_fakery/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/types.py -------------------------------------------------------------------------------- /django_fakery/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/utils.py -------------------------------------------------------------------------------- /django_fakery/values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/django_fakery/values.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/blueprints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/blueprints.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/custom_fields.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/custom_fields.rst -------------------------------------------------------------------------------- /docs/get_or_make.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/get_or_make.rst -------------------------------------------------------------------------------- /docs/get_or_update.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/get_or_update.rst -------------------------------------------------------------------------------- /docs/hooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/hooks.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/lazies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/lazies.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/nonpersistantinstances.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/nonpersistantinstances.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/relationships.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/relationships.rst -------------------------------------------------------------------------------- /docs/seeding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/seeding.rst -------------------------------------------------------------------------------- /docs/shortcuts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/docs/shortcuts.rst -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/mypy.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | 4 | [metadata] 5 | license_file = LICENSE 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/tests/blueprints.py -------------------------------------------------------------------------------- /tests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/tests/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/0002_auto_20210712_1723.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/tests/migrations/0002_auto_20210712_1723.py -------------------------------------------------------------------------------- /tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/tests/runtests.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/tests/test_blueprints.py -------------------------------------------------------------------------------- /tests/test_custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/tests/test_custom_fields.py -------------------------------------------------------------------------------- /tests/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/tests/test_factory.py -------------------------------------------------------------------------------- /tests/test_gis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/tests/test_gis.py -------------------------------------------------------------------------------- /tests/test_postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/tests/test_postgres.py -------------------------------------------------------------------------------- /tests/test_shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/tests/test_shortcuts.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-fakery/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------