在线文档暗示可以从开发服务器下载数据(一次只能下载一种:
下载所有类型的实体仅适用于App Engine,不适用于开发服务器。
url开关是否应该以localhost作为参数传递?我已经搜索并继续搜索,但找不到任何示例。
appcfg.py download_data --application=<your_app_id> --kind=<kind>
--url=http://your_app_id.appspot.com/[remote_api_path]
--filename=<data-filename>
我已添加到app.yaml:
builtins:
- remote_api: on
如果你启用了remote_api内置功能,那么remote_api_path是什么?
我希望有人可以提供一个命令行参数示例,允许批量下载特定类型的数据。
提前致谢:)
答案 0 :(得分:4)
尝试这样的事情:
appcfg.py download_data
--application=YourAppID --kind=YourKind
--url=http://localhost:YourPort/_ah/remote_api
--filename=YourFileName