我无法让批量上传器工作。我已经 遵循此处的教程:http://code.google.com/appengine/docs/ 蟒/工具/ uploadingdata.html。
当我输入以下命令时(从Windows,使用PowerShell)
appcfg.py upload_data --config_file=src/friend_loader.py --filename=frienddata.csv --kind=Friend ./src/
我收到以下错误:
用法:appcfg.py [options] upload_data
appcfg.py:错误:预计 参数。
无论我如何改变秩序,这似乎都会发生 参数,文件所在的位置或我拥有的任何其他组合 试过。
任何想法都赞赏。
答案 0 :(得分:0)
添加“--noisy”时,您是否收到更多信息?你是否在上线之前登录?
答案 1 :(得分:0)
最后一个参数./src/你能解释一下你用它做什么的吗? 这些工具需要一个参数:在谷歌应用引擎上运行你的应用的app_Id或你的应用的根路径通常是这样的。
/appcfg.py --config_file=person_loader.py --kind=person --filename=persons.csv --url=http://employee.appspot.com/remote_api download_data 2010employee010
其中2010employee010是app_ID,或者您可以通过其他方式实现:
/appcfg.py --config_file=person_loader.py --kind=person --filename=persons.csv --url=http://employee.appspot.com/remote_api download_data employee/
其中employee /是应用程序运行或启动的根路径。