How can I use the Google App engine bulkloader to back up all my data?

后端 未结 2 1371
感动是毒
感动是毒 2020-12-21 12:35

The docs say

appcfg.py --dump --app_id= \\
 --url=http://.appspot.com/remote_api \\
 --filename=

相关标签:
2条回答
  • 2020-12-21 12:50

    I found that I had to use download_data instead of --dump and --application instead of --app_id, for example:

     appcfg.py download_data --application=app_id --url=http://etc --filename=file
    
    0 讨论(0)
  • 2020-12-21 12:56

    Is it possible that you have two versions of app engine installed; one on your python path (a different version of appengine) and one in the /usr/local/share/google_appengine/VERSION directory (which reports 1.3.4)

    0 讨论(0)
提交回复
热议问题