标签: python django cron crontab
CRONJOBS = [('* * * * *', 'tweets.cron.get_tweets')]
我无法向此函数添加任何参数,因为它需要参数,所以它不起作用。 我想添加像
get_tweets(username)
答案 0 :(得分:1)
这是怎么回事?
('* * * * *', 'tweets.cron.get_tweets', ['username'])
---> docs< ---