我正在尝试在Googl App Engine应用程序中上传数据,如本文https://developers.google.com/appengine/docs/python/tools/uploadingdata中所述
因此我正在执行此命令(来自Eclipse PyDev)
appcfg.py upload_data --config_file=album_loader.py --filename=album_data.csv --kind=Album http://your_app_id.appspot.com/_ah/remote_api
但是我收到以下错误:
Usage: appcfg.py [options] upload_data <directory>
appcfg.py: error: Not a directory: http://your_app_id.appspot.com/_ah/remote_api
FINISHED
答案 0 :(得分:1)
看起来示例中缺少--url
:
appcfg.py upload_data --config_file=album_loader.py --filename=album_data.csv --kind=Album --url=http://your_app_id.appspot.com/_ah/remote_api