I'm currently using the --kind
parameter to specify which kind to download and the --filename
to specify the name of the csv file to produce. The --rps_limit
, --bandwidth_limit
and --batch_size
are used to speed up the download.
For example, to download my Game kind I'm using:
appcfg.py download_data --config_file=bulkloader.yaml --kind=Game --filename=game.csv --application=MyAppId --url=http://MyAppId.appspot.com/remote_api --rps_limit=500 --bandwidth_limit=2500000 --batch_size=100
So is there an appcfg.py command to download the entire datastore without being kind specific to one csv file?
Thanks!