Google AppEngine Python Cron 作业 urllib

发布于 2024-11-05 22:06:35 字数 902 浏览 5 评论 0原文

我需要使用 Google AppEngine 设置一个 cron 作业,它将使用 urllib2 执行托管在我的另一台服务器上的网页。

我知道脚本正在执行(检查日志),但我的 python 脚本中的日志记录似乎从未输出。

#!/usr/bin/env python
from google.appengine.ext import webapp
from google.appengine.ext.webapp import util

import logging
import urllib
import urllib2

class MainHandler(webapp.RequestHandler):
    def get(self):
        logging.info('Starting backups.')


def main():
    application = webapp.WSGIApplication([('/', MainHandler)],
                                         debug=True)
    util.run_wsgi_app(application)
    urlStr = "http://example.com/cron.php"

    request = urllib2.Request(urlStr)
    try:
            response = urllib2.urlopen(request)
            logging.info("Backup complete!")
    except URLError, e:
            logging.error('There was an error %s', e.reason)


if __name__ == '__main__':
    main()

谁能看出这有什么问题吗?

I'm in need of setting up a cron job using Google AppEngine which will use urllib2 to execute a web page hosted on another server of mine.

I know that the script is executing (checked the logs) but my logging inside my python script never seems to be outputted.

#!/usr/bin/env python
from google.appengine.ext import webapp
from google.appengine.ext.webapp import util

import logging
import urllib
import urllib2

class MainHandler(webapp.RequestHandler):
    def get(self):
        logging.info('Starting backups.')


def main():
    application = webapp.WSGIApplication([('/', MainHandler)],
                                         debug=True)
    util.run_wsgi_app(application)
    urlStr = "http://example.com/cron.php"

    request = urllib2.Request(urlStr)
    try:
            response = urllib2.urlopen(request)
            logging.info("Backup complete!")
    except URLError, e:
            logging.error('There was an error %s', e.reason)


if __name__ == '__main__':
    main()

Can anyone see anything wrong with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

娇纵 2024-11-12 22:06:35

main() 应在 util.run_wsgi_app(application) 之后结束。其余部分属于您的处理程序类。

main() should end after util.run_wsgi_app(application). The rest of that belongs in your handler class.

欢烬 2024-11-12 22:06:35

我刚刚使用了 Google App Engine 根目录中的 main.py ,这似乎给了我更好的结果。

除了德鲁提到的之外,还有一些问题。

I just used main.py from the Google App Engine root and then this seems to give me a better result.

There was a few problems other than what Drew mentioned too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文