├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ ├── bandit.yml │ ├── dependency-review.yml │ └── django.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .tool-versions ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── Makefile ├── README.rst ├── conftest.py ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── django_shared_property.rst ├── history.rst ├── index.html ├── index.rst ├── installation.rst ├── make.bat ├── modules.rst ├── readme.rst └── usage.rst ├── poetry.lock ├── pyproject.toml ├── requirements_test.txt ├── setup.cfg ├── src └── django_shared_property │ ├── __init__.py │ ├── apps.py │ ├── decorator.py │ ├── expressions.py │ └── parser.py ├── tests ├── __init__.py ├── admin.py ├── models.py ├── settings.py ├── tests │ ├── __init__.py │ ├── test_abstract.py │ ├── test_coerce.py │ ├── test_convert_value.py │ ├── test_fetch.py │ ├── test_joined_models.py │ ├── test_json_field.py │ ├── test_lookup_expression.py │ ├── test_object_creation.py │ ├── test_register.py │ ├── test_simplest_expression.py │ └── test_subquery.py └── urls.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/bandit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/.github/workflows/bandit.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/.github/workflows/django.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/.tool-versions -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/README.rst -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/django_shared_property.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/docs/django_shared_property.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/django_shared_property/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/src/django_shared_property/__init__.py -------------------------------------------------------------------------------- /src/django_shared_property/apps.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_shared_property/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/src/django_shared_property/decorator.py -------------------------------------------------------------------------------- /src/django_shared_property/expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/src/django_shared_property/expressions.py -------------------------------------------------------------------------------- /src/django_shared_property/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/src/django_shared_property/parser.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/test_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tests/tests/test_abstract.py -------------------------------------------------------------------------------- /tests/tests/test_coerce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tests/tests/test_coerce.py -------------------------------------------------------------------------------- /tests/tests/test_convert_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tests/tests/test_convert_value.py -------------------------------------------------------------------------------- /tests/tests/test_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tests/tests/test_fetch.py -------------------------------------------------------------------------------- /tests/tests/test_joined_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tests/tests/test_joined_models.py -------------------------------------------------------------------------------- /tests/tests/test_json_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tests/tests/test_json_field.py -------------------------------------------------------------------------------- /tests/tests/test_lookup_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tests/tests/test_lookup_expression.py -------------------------------------------------------------------------------- /tests/tests/test_object_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tests/tests/test_object_creation.py -------------------------------------------------------------------------------- /tests/tests/test_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tests/tests/test_register.py -------------------------------------------------------------------------------- /tests/tests/test_simplest_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tests/tests/test_simplest_expression.py -------------------------------------------------------------------------------- /tests/tests/test_subquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tests/tests/test_subquery.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- 1 | urlpatterns = [] 2 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schinckel/django-shared-property/HEAD/tox.ini --------------------------------------------------------------------------------