gpt4 book ai didi

python - 从数据存储区下载数据

转载 作者:太空宇宙 更新时间:2023-11-03 15:25:01 26 4
gpt4 key购买 nike

我想在我的在线应用程序的数据存储中下载数据,我关注了 the guide on code.google ,我将其添加到我的 app.yaml 文件

builtins:
- remote_api: on

但是当我使用 appcfg.py update src 更新并调用它时:

appcfg.py download_data --application=myapp --url=http://myapp.appspot.com/remote_api_path --filename=first-test-backup`

我遇到了身份验证错误,情况几乎相同 mentioned here ,所以我试着把这个:

- url: /remote_api 
script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py
login: admin

在任何包罗万象的处理程序之前,但随后出现此错误:threadsafe cannot be enabled with CGI handler 当我尝试更新时,所以根据 this discussion ,我将其替换为:

    - url: /remote_api 
script: google.appengine.ext.remote_api.handler.application
login: admin

这又给了我身份验证错误,我还尝试将 ('/remote_api', google.appengine.ext.remote_api.handler) 添加到 app = webapp2.WSGIApplication,但是身份验证错误仍然存​​在。

我使用高复制数据存储,但根据 code.google唯一的缺点是我可能无法获取最新数据。

如何下​​载我的数据?

最佳答案

试试这个:

builtins:
- remote_api: on

和 url

appcfg.py download_data --application=~myapp --url=http://myapp.appspot.com/_ah/remote_api --filename=first-test-backup

注意 url 中的 _ah:http://myapp.appspot.com/_ah/remote_api

关于python - 从数据存储区下载数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8688594/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com