Unable to make a function call using Django-cron
问题 I want to call a method once in a week for which I made an implementation as mentioned here https://gutsytechster.wordpress.com/2019/06/24/how-to-setup-a-cron-job-in-django/ I am not sure how it works, but let me explain what I did. I need to call a method as mentioned in folder structure below. proj_application | |- myapp | |-views.py (Method call Inside) |- poll_tracked() In views.py, def poll_tracked(): print('called') In settings.py, I have mentioned INSTALLED_APPS = [ 'django_crontab', ]