convertnext.py 327 B

12345678910
  1. from django.core.management.base import BaseCommand, CommandError
  2. #https://docs.djangoproject.com/en/1.10/howto/custom-management-commands/
  3. class Command(BaseCommand):
  4. help = 'Converts the next video in queue'
  5. def handle(self, *args, **options):
  6. self.stdout.write(self.style.SUCCESS('should perform stuff'))