I am trying to use call_command
to download data from a URL and was wondering on how to call it from the code.
I have declared the option lists as follows in my code:
option_list = BaseCommand.option_list + (
make_option('--url', default=None, dest='url', help=_(u'Specifies the full url of the json data to download.')),
make_option('--username', default=None, dest='username', help=_(u'Login of the person doing the download.')),
make_option('--password', default=None, dest='password', help=_(u'Password of the person doing the download.')),
make_option('--file', default=None, dest='file', help=_(u'File name of the json data to download in gzip-compressed-data format')),
)
I use it as follows from the command line:
./manage.py download --url=http://some-link.com/download/ --username=admin --password=admin
So far I have the following:
call_command('download')
How do I pass in the rest of the parameters/args?
Just pass them as keyword arguments:
The keyword arguments should reflect the
dest
values of your custom management command arguments.Example for
flush
command:--initial-data
command-line argument incall_command()
can be set by passingload_initial_data
keyword argument:This is because it is
--initial-data
's argument destination: