Как получить доступ к параметрам из командной строки в методе init .Например."python manage.py get_poll 56", и я хочу, чтобы 56 был доступен в методе init .
class Command(BaseCommand):
help = 'poll for voting'
def __init__(self, *args, **kwargs):
super().__init__()
poll_count(??)
def add_arguments(self, parser):
parser.add_argument('poll_count', type=int)
def handle(self, *args, **options):
Poll_count = options["poll_count"]