How to execute a command at exact time once a day in Django?
I am working on a Django web based project in which i need to build a application which work in the following sequence: 1) user open a page in which he need to enter a command and a time 2) Django application will execute that command at a given time on each day till user off the scheduler (by default it is True) What i am facing the problem is that : 1) How should i execute the commands on a time but on each day. To save the commands and time i created a following model in my models.py class commands(models.Model): username = models.ForeignKey(User) command = models.CharField(max_length=30)