如何在谷歌应用引擎中启动模块?

时间:2014-01-27 17:08:12

标签: python google-app-engine

我正在努力创建一个模块。基本上我想在这里提出要求:

http://[modulename].[appname].appspot.com

哪个有效,因为我已正确配置[modulename].yaml以将任何请求(/ *)映射到我想要运行的后端脚本。

如何通过cron作业拨打电话?我尝试过这个似乎不起作用:

url = "http://[modulename].[appname].appspot.com"
result = urlfetch.fetch(url)

1 个答案:

答案 0 :(得分:1)

如果它与之前的模块类似,那么你必须从appcfg的命令行“手动”启动它们。

appcfg.py [options] start <app-directory>

这将启动指定的模块版本。

此处有更多详情:https://developers.google.com/appengine/docs/python/tools/uploadinganapp