What is `*args` in a Django BaseCommand handle function for?

Viewed 63

The signature of BaseCommand.handle is handle(*args, **kwargs). The documentation example only uses the kwargs argument.

Are there cases/ways to define command arguments/options such that they will appear as positional arguments to the handle function?

0 Answers
Related