我正在使用此指令http://django-cron.readthedocs.org/en/latest/installation.html并且无法理解“唯一代码”行的含义。
from django_cron import CronJobBase, Schedule
class MyCronJob(CronJobBase):
RUN_EVERY_MINS = 120 # every 2 hours
schedule = Schedule(run_every_mins=RUN_EVERY_MINS)
code = 'my_app.my_cron_job' # a unique code
def do(self):
pass # do your thing here
谁能解释一下这条线是做什么的?
code = 'my_app.my_cron_job' # a unique code