I am working in uploading and downloading data into google app engine datastore.I refered the following link
http://code.google.com/appengine/docs/python/tools/uploadingdata.html
In that they gave if we are using key as primary key datatype than remove you can remove the entire key property from the property map.
so that i shows output like this
ID/Name Name id=1 Delhi id=2 London
And also they gave export_transform: transform.key_id_or_name_as_string ,so that it stored
Primary key stored there is: ID/Name Name name=1 Delhi name=2 London
But i am using long as primary key datatype i
I want output like this
ID/Name Name id=1 Delhi id=2 London How to achieve this?