PEP-484 stubs for django-rest-framework
Project description
pep484 stubs for Django REST framework
Mypy stubs for Django REST Framework. Supports Python 3.8 and up.
Installation
pip install djangorestframework-stubs[compatible-mypy]
To make mypy aware of the plugin, you need to add
[mypy]
plugins =
mypy_drf_plugin.main
in your mypy.ini
file.
FAQ
Model instance is inferred as Any
instead of my Model
class
When subclassing ModelSerializer
, add a type argument to type-hint the related model class, for example:
class MyModelSerializer(serializers.ModelSerializer[MyModel]):
class Meta:
model = MyModel
fields = ("id", "example")
Which means that methods where the model is being passed around will know the actual type of the model instead of being Any
. The instance
attribute on the above serializer will be Union[MyModel, typing.Sequence[MyModel], None]
.
To get help
We have Gitter here: https://gitter.im/mypy-django/Lobby If you think you have more generic typing issue, please refer to https://github.com/python/mypy and their Gitter.
Contributing
This project is open source and community driven. As such we encourage contributions big and small. You can contribute by doing any of the following:
- Contribute code (e.g. improve stubs, add plugin capabilities, write tests etc) - to do so please follow the contribution guide.
- Assist in code reviews and discussions in issues.
- Identify bugs and issues and report these
You can always also reach out in gitter to discuss your contributions!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for djangorestframework-stubs-3.14.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5dd6f638aa5291fb7863e6166128a6ed20bf4986e2fc5cf334e6afc841797a09 |
|
MD5 | 66b0dd2c8d9ed484adebff869b657af6 |
|
BLAKE2b-256 | cc51ef2f2196e81c261490e86c15b78f5a097d825b58f5ceb615bcece612eeb9 |
Hashes for djangorestframework_stubs-3.14.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43d788fd50cda49b922cd411e59c5b8cdc3f3de49c02febae12ce42139f0269b |
|
MD5 | b8ef49877724aab5e5d1910cfc78d0d1 |
|
BLAKE2b-256 | 1305c98a1e3d3824dc9a330df26827935b5d7559a5c01bcfca8e18ab645dc758 |