Guest User

Untitled

a guest
Oct 23rd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. def my_scheduled_job():
  2. print("Prueba")
  3. pass
  4.  
  5. CRONJOBS = [
  6. ('*/5 * * * *', 'miaplicacion.cron.my_scheduled_job')
  7.  
  8. python manage.py crontab add
  9.  
  10. python manage.py crontab show
Add Comment
Please, Sign In to add comment