django-typer
django-typer copied to clipboard
Use Typer (type hints) to define the interface for your Django management commands.
There's a complexity with how the group decorators work involving the descriptor on the GroupFunction class that returns a GroupFunction instance if its accessed as a class member versus the...
You should be able to attach commands and groups to commands defined further up the app stack. This would allow pluggable command namespacing patterns that might be useful for projects...
This is tricky because we don't want to redirect stdout using contextlib because that will mess up debuggers which is a main reason to use complete.