Google AppEngine Python Cron Job Urllib
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 (chec
Solution 1:
main()
should end after util.run_wsgi_app(application)
. The rest of that belongs in your handler class.
Solution 2:
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.
Post a Comment for "Google AppEngine Python Cron Job Urllib"