This old answer points to a link on Google App Engine documentation, but that link is now about backup your GAE data, not downloading it.
So how to download all the data into a csv? The data is small, i.e < 1 GB
This old answer points to a link on Google App Engine documentation, but that link is now about backup your GAE data, not downloading it.
So how to download all the data into a csv? The data is small, i.e < 1 GB
I had tried a couple different approaches to export to csv using steps outlined here and here. But I could not get either to work. So, here is what I did (my largest table was about 2GB). This works relatively quickly even though it seems like a lot of steps...better than fighting random code that Google may have changed for hours on end, too:
Here's a few tips:
Like I said, this was actually pretty quick even though it is a number of steps. Hope it helps someone avoid a bunch of time spent trying to convert strange backup file formats or run code that may not work anymore.
You can use
appcfg.py
to downloadKind
data in csv format.