How can I use Cron in Google App Engine?
Google officially included cron in AppEngine, for more details:
Cron for Python: http://code.google.com/appengine/docs/python/config/cron.html
Cron for Java: http://code.google.com/appengine/docs/java/config/cron.html
This page shows how to achieve Cron functionality in Google Appengine.
Now you can run scheduled tasks using the Google appengine
http://code.google.com/appengine/docs/python/config/cron.html#Securing_URLs_for_Cron
Read the comments on issue 6 for possible workarounds.
Use http://schedulerservice.appspot.com/ or http://code.google.com/p/gaeutilities/wiki/Cron
See this post - maybe we will get cron functions in GAE soon.
According to the official AppEngine public blog, updating the roadmap two weeks ago planned tasks (as well as queues of background tasks) release in the moderately near future ("in the next six months", as of February 6, 2009).
Here is an example http://cron-tab.appspot.com/ , the python source code is available in a related project with the code .google.com / p / cron-tab /
Here's a tutorial on using the Google Cron job for the Google App Engine to send an automated email:
http://www.fishbonecloud.com/2010/11/automated-email-using-google-app-engine.html
You can use the GAE Cron jobs, but be careful, as they do not support HTTPS!