mypy-django icon indicating copy to clipboard operation
mypy-django copied to clipboard

PEP-484 type hints bindings for the Django web framework

Results 8 mypy-django issues
Sort by recently updated
recently updated
newest added

**Bug Report** when trying to run "mypy" on my company's existing codebase I'm getting an error as follows: ``` root@826a40544ab8:/app/wwau/wwau# mypy --config-file=./setup.cfg ./wwau/settings.py Error constructing plugin instance of NewSemanalDjangoPlugin Traceback...

https://www.python.org/dev/peps/pep-0561/ Eg make this package available on PyPI

Hi, @dmoisset! I really like the initiative taken by you and your collegues over at Machinalis. Static type checking for Django on a general basis would be great! For the...

Hi ! Does it make sense to centralise these stubs in https://github.com/python/typeshed and avoid work duplication ? Thanks !

Encountered against the latest checkouts, with mypy==0.521 Two lines: ``` from django.views import View # type: ignore from django.db import models # type: ignore ``` Errors: ``` $ MYPYPATH=mypy-django mypy...

In order to develop any project, automated testing is essential. I reckon the type stubs can be tested by creating a directory with example files, and by testing the output...

I have some modified stubs for `QuerySet` and `Manager` so they accept type parameters. This makes the following possible. ```python for foo in Foo.objects.all(): # The type of foo is...

Thanks for your work on these stubs! We are adding type annotations to our Django-based server codebase at Instagram, and we'd like to use (and contribute back to) this project....