When the task runs, it does just do a 'GET' on the url, so you simply need to handle a GET on that url like you would any other.
On Mar 10, 10:47 am, Massimiliano <[email protected]> wrote: > Just one more information. > > cron: > - description: daily summary job > url: /tasks/summary > schedule: every 24 hours > > I can just add a class in my main python file and route this url to this > class and I will use the GET method, right? > > 2010/3/10 Massimiliano <[email protected]> > > > > > > > Thanks > > > 2010/3/10 mstodd <[email protected]> > > > As long as the script doesn't take long, you can use cron jobs. Check > >> outhttp://code.google.com/appengine/docs/python/config/cron.html > > >> You'll have 30 seconds to complete your job, same as the amount of > >> time you have to complete a normal request. > > >> Mark > > >> On Mar 10, 10:01 am, Massimiliano <[email protected]> > >> wrote: > >> > Dear All, > >> > I hope someone can help me with those p. > > >> > I need to have a script working every night at the same hour (to work on > >> the > >> > datastore changing some values). How can I do this? > > >> > Thanks > > >> > Massimiliano > > >> > -- > > >> > My email: [email protected] > >> > My Google Wave: [email protected] > > >> -- > >> You received this message because you are subscribed to the Google Groups > >> "Google App Engine" group. > >> To post to this group, send email to [email protected]. > >> To unsubscribe from this group, send email to > >> [email protected]<google-appengine%[email protected]> > >> . > >> For more options, visit this group at > >>http://groups.google.com/group/google-appengine?hl=en. > > > -- > > > My email: [email protected] > > My Google Wave: [email protected] > > -- > > My email: [email protected] > My Google Wave: [email protected] Hide quoted text - > > - Show quoted text - -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
