views:

55

answers:

1

i can use this code to download all data from my app on gae :

appcfg.py download_data  --application=zjm1126 --url=http://zjm1126.appspot.com/remote_api --filename=a.csv

it is not use bulkloader , so can i upload all data without bulkloader ,

thanks

+1  A: 

Yes, you can use the upload_data command as described here, but this and your download_data command are deprecated from SDK 1.3.4 onwards. So it's better to look into using the bulkloader API as described here.

tomlog