You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
816 B
Python

from __future__ import annotations
from typing import Iterable, Optional, TypeVar
from .generic import ExtractionError, GeneralExtractor
T = TypeVar("T", bound=GeneralExtractor)
def search_suitable_extractor(extractor_list: Iterable[T], uri: str) -> Optional[T]:
best_bet: Optional[T] = None
for extractor in extractor_list:
match = extractor.uri_suitable(uri)
if match.accept_immediately:
return extractor
if match.can_accept and best_bet is None:
best_bet = extractor
return best_bet
def expect_suitable_extractor(extractor_list: Iterable[T], uri: str) -> T:
extractor = search_suitable_extractor(extractor_list, uri)
if extractor is None:
raise ExtractionError(f"No suitable extractor found for uri {uri!r}")
return extractor