test_cmd.py 207 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import time from django.core.management import BaseCommand class Command(BaseCommand): def handle(self, *args, **kwargs): while True: print(time.time()) time.sleep(5)