django python obtenir plus de commandes paramaters
self.stdout.write(self.style.SUCCESS('...'))
Viktor Völgyes
self.stdout.write(self.style.SUCCESS('...'))
class Command(BaseCommand):
def add_arguments(self, parser):
# Positional arguments
parser.add_argument('poll_ids', nargs='+', type=int)
# Named (optional) arguments
parser.add_argument(
'--delete',
action='store_true',
help='Delete poll instead of closing it',
)
def handle(self, *args, **options):
# ...
if options['delete']:
poll.delete()
# ...