Ankit Jaiswal
Ankit Jaiswal

Reputation: 23437

How to insert bulk data in Google App Engine Datastore?

I have some CSV files for cities,state and countries with their ids, names etc. I want to put all this data into Google app engine datastore.

Can someone please suggest an efficient way of doing this on development server as well as on the production server?

Thanks in advance.

Upvotes: 4

Views: 2700

Answers (1)

Max
Max

Reputation: 11607

You're in luck. The functionality you described is baked into appcfg.py:

http://code.google.com/appengine/docs/python/tools/uploadingdata.html

Upvotes: 3

Related Questions