Nava
Nava

Reputation: 71

Copy data from google datastore to CSV

I am storing data in google cloud datastore via an appengine project and would like to download one of the entities as a CSV file.

I have set up gsutil so that it defaults to this appengine project. I have also created a bucket under cloud storage.

Is there a way to use gsutil to move data into the bucket? gsutil cp gs://bucket_name seems a likely candidate.

But IS this the way to go? And if so, what is the structure of the URI?

Many thanks!

Upvotes: 0

Views: 1276

Answers (1)

proppy
proppy

Reputation: 10504

You can use the lookup method to retrieve and entity JSON presentation by key.

Upvotes: 1

Related Questions