On Fri, 2008-11-14 at 02:52 -0800, laspal wrote: > Hi, > I am trying to write cron job for trigger mail whenever task is > overdue.
[... snip ...] > So my problem is how do I run it.I mean how can I connect to my djanog > project?? > here is my project path -> /home/work/test/ > my settings.py and trigger_mail.py is in the same folder. > > The full code is not here I just wanted to know how can I run this > trigger_mail.py file from django. These sentences don't make sense. What we call "Django" is a collection of modules and libraries that you import and use. There's no concept of running something "from Django" or "connecting to a project". Crontab will execute your script from time to time (however frequently you configure it to be run) and that's all that is needed. You import the bits you need and call them as required, as you seem to be doing in your code fragment. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---