I have a python script that add some entities to Cloud Datastore Local Development Server using Python protocol buffers library, and I would like to:
- Instead of using Cloud Datastore Local Development use dev_appserver datastore
or
- Make somehow dev_appserver use datastore file created by Cloud Datastore Local Development Server
I know there is an option to set the datastore file: --datastore-path DATASTORE_PATH Path to a file used to store datastore contents
But I couldn't make it work.
Any thoughts? Thanks
dev_appserveruses asqlitefile format and stores data in a special format that it understands. I doubt it would be compatible with the output of the Cloud Datastore dev server. Why do you need to switch from Cloud Datastore to the app engine datastore? That information may help you get a better answer.