|
|
@ -94,9 +94,9 @@ def print_extractor_information(opts, urls):
|
|
|
|
for ie in list_extractors(opts.age_limit):
|
|
|
|
for ie in list_extractors(opts.age_limit):
|
|
|
|
if not ie.working():
|
|
|
|
if not ie.working():
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|
desc = getattr(ie, 'IE_DESC', ie.IE_NAME)
|
|
|
|
if ie.IE_DESC is False:
|
|
|
|
if desc is False:
|
|
|
|
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|
|
|
|
|
desc = ie.IE_DESC or ie.IE_NAME
|
|
|
|
if getattr(ie, 'SEARCH_KEY', None) is not None:
|
|
|
|
if getattr(ie, 'SEARCH_KEY', None) is not None:
|
|
|
|
_SEARCHES = ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny', 'burping cow')
|
|
|
|
_SEARCHES = ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny', 'burping cow')
|
|
|
|
_COUNTS = ('', '5', '10', 'all')
|
|
|
|
_COUNTS = ('', '5', '10', 'all')
|
|
|
|