以下のような文字列パラメーターを作成するのは簡単です--test_email_address
。
class Command(BaseCommand):
option_list = BaseCommand.option_list + (
make_option('--test_email_address',
action='store',
type="string",
dest='test_email_address',
help="Specifies test email address."),
make_option('--vpds',
action='store',
type='list', /// ??? Throws exception
dest='vpds',
help="vpds list [,]"),
)
しかし、渡されるリストを定義するにはどうすればよいでしょうか? そのような[1, 3, 5]