Skip to content
  • This project
    • Loading...
  • Sign in

周伟奇 / bmw-ocr

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • bmw-ocr
  • src
  • apps
  • doc
  • management
  • commands
  • test_cmd.py
  • Gruel's avatar
    mysql config & cmd test · f7cba4a5
    Gruel committed 2020-06-11 17:39:43 +0800
    f7cba4a5
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)