@anze3db wins the prize for first blog mention of Django Mantle đ
https://blog.pecar.me/typing-your-django-project-in-2026/ #Django #Mantle

Typing Your Django Project in 2026
The first version of Django was released about 10 years before Python standardized its type hints syntax. Because of this itâs not surprising that getting type hints to work in your Django project is not going to be trivial. django-stubs with mypy If you want your Django codebase to be type checked then django-stubs is the go to package to use. It ships both type-stubs for most of Djangoâs public APIs as well as a mypy plugin that fills in the typing information for all the dynamic black magic that we love Django for. Youâll also want to include the monkeypatch from django-stubs-ext for best results.
