Is there an IDE which knows the django ORM and can can tell me the matching completions after the double underscore?
Example:
Foo.objects.filter(due_date__ ???
The IDE should tell me that gte
is a possible completion.
Example2:
Permission.objects.filter(content_type__???
here the IDE should tell me that app_label
is a possible completion.