├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ └── bug.md ├── pull_request_template.md ├── renovate.json └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── mypy.ini ├── mypy_drf_plugin ├── __init__.py ├── lib │ ├── __init__.py │ ├── fullnames.py │ └── helpers.py ├── main.py └── transformers │ ├── __init__.py │ └── serializers.py ├── pyproject.toml ├── rest_framework-stubs ├── __init__.pyi ├── apps.pyi ├── authentication.pyi ├── authtoken │ ├── __init__.pyi │ ├── admin.pyi │ ├── apps.pyi │ ├── management │ │ ├── __init__.pyi │ │ └── commands │ │ │ ├── __init__.pyi │ │ │ └── drf_create_token.pyi │ ├── models.pyi │ ├── serializers.pyi │ └── views.pyi ├── checks.pyi ├── compat.pyi ├── decorators.pyi ├── documentation.pyi ├── exceptions.pyi ├── fields.pyi ├── filters.pyi ├── generics.pyi ├── management │ ├── __init__.pyi │ └── commands │ │ ├── __init__.pyi │ │ └── generateschema.pyi ├── metadata.pyi ├── mixins.pyi ├── negotiation.pyi ├── pagination.pyi ├── parsers.pyi ├── permissions.pyi ├── relations.pyi ├── renderers.pyi ├── request.pyi ├── response.pyi ├── reverse.pyi ├── routers.pyi ├── schemas │ ├── __init__.pyi │ ├── coreapi.pyi │ ├── generators.pyi │ ├── inspectors.pyi │ ├── openapi.pyi │ ├── utils.pyi │ └── views.pyi ├── serializers.pyi ├── settings.pyi ├── status.pyi ├── templatetags │ ├── __init__.pyi │ └── rest_framework.pyi ├── test.pyi ├── throttling.pyi ├── urlpatterns.pyi ├── urls.pyi ├── utils │ ├── __init__.pyi │ ├── breadcrumbs.pyi │ ├── encoders.pyi │ ├── field_mapping.pyi │ ├── formatting.pyi │ ├── html.pyi │ ├── humanize_datetime.pyi │ ├── json.pyi │ ├── mediatypes.pyi │ ├── model_meta.pyi │ ├── representation.pyi │ ├── serializer_helpers.pyi │ └── urls.pyi ├── validators.pyi ├── versioning.pyi ├── views.pyi └── viewsets.pyi ├── scripts ├── __init__.py ├── drf_tests_settings.py ├── stubtest.sh ├── stubtest │ ├── allowlist.txt │ └── allowlist_todo.txt └── tests_extension_hook.py ├── tests ├── assert_type │ ├── __init__.py │ ├── compat.py │ ├── decorators.py │ ├── exceptions.py │ ├── fields.py │ ├── filters.py │ ├── mixins.py │ ├── pagination.py │ ├── request.py │ ├── routers.py │ ├── serializers.py │ ├── test.py │ └── views.py └── typecheck │ ├── test_all_imports.yml │ ├── test_decorators.yml │ ├── test_exceptions.yml │ ├── test_fields.yml │ ├── test_serializers.yml │ └── test_views.yml └── uv.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/README.md -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/mypy.ini -------------------------------------------------------------------------------- /mypy_drf_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mypy_drf_plugin/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mypy_drf_plugin/lib/fullnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/mypy_drf_plugin/lib/fullnames.py -------------------------------------------------------------------------------- /mypy_drf_plugin/lib/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/mypy_drf_plugin/lib/helpers.py -------------------------------------------------------------------------------- /mypy_drf_plugin/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/mypy_drf_plugin/main.py -------------------------------------------------------------------------------- /mypy_drf_plugin/transformers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mypy_drf_plugin/transformers/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/mypy_drf_plugin/transformers/serializers.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rest_framework-stubs/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/__init__.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/apps.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/apps.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/authentication.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/authentication.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/authtoken/__init__.pyi: -------------------------------------------------------------------------------- 1 | default_app_config: str 2 | -------------------------------------------------------------------------------- /rest_framework-stubs/authtoken/admin.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/authtoken/admin.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/authtoken/apps.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/authtoken/apps.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/authtoken/management/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework-stubs/authtoken/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework-stubs/authtoken/management/commands/drf_create_token.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/authtoken/management/commands/drf_create_token.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/authtoken/models.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/authtoken/models.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/authtoken/serializers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/authtoken/serializers.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/authtoken/views.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/authtoken/views.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/checks.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/checks.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/compat.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/compat.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/decorators.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/decorators.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/documentation.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/documentation.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/exceptions.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/exceptions.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/fields.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/fields.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/filters.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/filters.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/generics.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/generics.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/management/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework-stubs/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework-stubs/management/commands/generateschema.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/management/commands/generateschema.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/metadata.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/metadata.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/mixins.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/mixins.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/negotiation.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/negotiation.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/pagination.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/pagination.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/parsers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/parsers.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/permissions.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/permissions.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/relations.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/relations.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/renderers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/renderers.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/request.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/request.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/response.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/response.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/reverse.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/reverse.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/routers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/routers.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/schemas/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/schemas/__init__.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/schemas/coreapi.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/schemas/coreapi.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/schemas/generators.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/schemas/generators.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/schemas/inspectors.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/schemas/inspectors.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/schemas/openapi.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/schemas/openapi.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/schemas/utils.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/schemas/utils.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/schemas/views.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/schemas/views.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/serializers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/serializers.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/settings.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/settings.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/status.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/status.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/templatetags/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework-stubs/templatetags/rest_framework.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/templatetags/rest_framework.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/test.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/test.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/throttling.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/throttling.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/urlpatterns.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/urlpatterns.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/urls.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/urls.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework-stubs/utils/breadcrumbs.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/utils/breadcrumbs.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/utils/encoders.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/utils/encoders.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/utils/field_mapping.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/utils/field_mapping.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/utils/formatting.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/utils/formatting.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/utils/html.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/utils/html.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/utils/humanize_datetime.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/utils/humanize_datetime.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/utils/json.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/utils/json.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/utils/mediatypes.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/utils/mediatypes.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/utils/model_meta.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/utils/model_meta.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/utils/representation.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/utils/representation.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/utils/serializer_helpers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/utils/serializer_helpers.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/utils/urls.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/utils/urls.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/validators.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/validators.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/versioning.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/versioning.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/views.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/views.pyi -------------------------------------------------------------------------------- /rest_framework-stubs/viewsets.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/rest_framework-stubs/viewsets.pyi -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/drf_tests_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/scripts/drf_tests_settings.py -------------------------------------------------------------------------------- /scripts/stubtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/scripts/stubtest.sh -------------------------------------------------------------------------------- /scripts/stubtest/allowlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/scripts/stubtest/allowlist.txt -------------------------------------------------------------------------------- /scripts/stubtest/allowlist_todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/scripts/stubtest/allowlist_todo.txt -------------------------------------------------------------------------------- /scripts/tests_extension_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/scripts/tests_extension_hook.py -------------------------------------------------------------------------------- /tests/assert_type/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assert_type/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/assert_type/compat.py -------------------------------------------------------------------------------- /tests/assert_type/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/assert_type/decorators.py -------------------------------------------------------------------------------- /tests/assert_type/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/assert_type/exceptions.py -------------------------------------------------------------------------------- /tests/assert_type/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/assert_type/fields.py -------------------------------------------------------------------------------- /tests/assert_type/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/assert_type/filters.py -------------------------------------------------------------------------------- /tests/assert_type/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/assert_type/mixins.py -------------------------------------------------------------------------------- /tests/assert_type/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/assert_type/pagination.py -------------------------------------------------------------------------------- /tests/assert_type/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/assert_type/request.py -------------------------------------------------------------------------------- /tests/assert_type/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/assert_type/routers.py -------------------------------------------------------------------------------- /tests/assert_type/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/assert_type/serializers.py -------------------------------------------------------------------------------- /tests/assert_type/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/assert_type/test.py -------------------------------------------------------------------------------- /tests/assert_type/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/assert_type/views.py -------------------------------------------------------------------------------- /tests/typecheck/test_all_imports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/typecheck/test_all_imports.yml -------------------------------------------------------------------------------- /tests/typecheck/test_decorators.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/typecheck/test_decorators.yml -------------------------------------------------------------------------------- /tests/typecheck/test_exceptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/typecheck/test_exceptions.yml -------------------------------------------------------------------------------- /tests/typecheck/test_fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/typecheck/test_fields.yml -------------------------------------------------------------------------------- /tests/typecheck/test_serializers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/typecheck/test_serializers.yml -------------------------------------------------------------------------------- /tests/typecheck/test_views.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/tests/typecheck/test_views.yml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeddjango/djangorestframework-stubs/HEAD/uv.lock --------------------------------------------------------------------------------