I have to execute a task at a specific time, which is specified by the user. This will not be fix time... It will be according to user...
On that time I have to execute my task...
To achieve this I tried to use django-cron also tried to use django-crontab...
But in both case either we have to specify cron details in settings.py or we've to execute runcron commands.
I also checked django-celery (I don't have any idea about celery much. I may be wrong).
In celery we have to specify time while defining task...
Can any one help me how can I do this...
I am using django as a backend...