J.Olufsen
J.Olufsen

Reputation: 13915

How to import records which was made on local host using Google App Engine Launcher using Python to online App Engine datastore?

I need to transfer all data in local datastore to online Google App Engine. How to do that?

Upvotes: 1

Views: 188

Answers (2)

Nick Johnson
Nick Johnson

Reputation: 101149

You can use the bulkloader tool to download all data from your development datastore and upload it to your production datastore, as documented here. You do not need to convert your data into CSV form first.

Upvotes: 1

Anil
Anil

Reputation: 965

You need to upload the data using a XML or CSV file. Read this

Upvotes: 1

Related Questions