-class Command(NoArgsCommand):
- def handle_noargs(self, **options):
- for image in Image.objects.exclude(book=None).order_by('id'):
- print image.id
- if 'flickr.com' in image.source_url:
+class Command(BaseCommand):
+ option_list = BaseCommand.option_list + (
+ make_option('--from', dest='from_id', type=int, default=1),
+ )
+
+ def handle(self, *args, **options):
+ from_id = options.get('from_id', 1)
+ for image in Image.objects.filter(id__gte=from_id).exclude(book=None).order_by('id'):
+ if image.source_url and 'flickr.com' in image.source_url and not image.download_url.endswith('_o.jpg'):
+ print image.id