Ivan Slaughter
Ivan Slaughter

Reputation: 767

How to upload 6000 record to Google Datastore from csv file

http://code.google.com/appengine/docs/python/tools/uploadingdata.html is not clearly understand. Where i should call the bulkloader.py or appcfg.py? Should i import the csv file to local Google App Engine SDK first? How to keep the upload and download data process in existing application for datastore synchronization?

Upvotes: 2

Views: 2334

Answers (1)

Iggy
Iggy

Reputation: 8669

Set Up remote_api, the docs have instructions for both java and python and then run bulkloader.py locally :

bulkloader.py --dump --app_id=<app-id> --url=http://<appname>.appspot.com/remote_api --filename=<data-filename>

if you are using the java sdk, you will need to install the python sdk.

Upvotes: 4

Related Questions