mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-30 23:47:31 +03:00 
			
		
		
		
	* Use isort with Black profile * isort all the things * Fix import cycles as a result of import sorting * Add DOCBIN_ALL_ATTRS type definition * Add isort to requirements * Remove isort from build dependencies check * Typo
		
			
				
	
	
		
			71 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from typing import (
 | |
|     Any,
 | |
|     Callable,
 | |
|     Dict,
 | |
|     Iterable,
 | |
|     Iterator,
 | |
|     List,
 | |
|     Optional,
 | |
|     Tuple,
 | |
|     Union,
 | |
|     overload,
 | |
| )
 | |
| 
 | |
| from ..compat import Literal
 | |
| from ..tokens import Doc, Span
 | |
| from ..vocab import Vocab
 | |
| 
 | |
| class Matcher:
 | |
|     def __init__(
 | |
|         self,
 | |
|         vocab: Vocab,
 | |
|         validate: bool = ...,
 | |
|         fuzzy_compare: Callable[[str, str, int], bool] = ...,
 | |
|     ) -> None: ...
 | |
|     def __reduce__(self) -> Any: ...
 | |
|     def __len__(self) -> int: ...
 | |
|     def __contains__(self, key: str) -> bool: ...
 | |
|     def add(
 | |
|         self,
 | |
|         key: Union[str, int],
 | |
|         patterns: List[List[Dict[str, Any]]],
 | |
|         *,
 | |
|         on_match: Optional[
 | |
|             Callable[[Matcher, Doc, int, List[Tuple[Any, ...]]], Any]
 | |
|         ] = ...,
 | |
|         greedy: Optional[str] = ...
 | |
|     ) -> None: ...
 | |
|     def remove(self, key: str) -> None: ...
 | |
|     def has_key(self, key: Union[str, int]) -> bool: ...
 | |
|     def get(
 | |
|         self, key: Union[str, int], default: Optional[Any] = ...
 | |
|     ) -> Tuple[Optional[Callable[[Any], Any]], List[List[Dict[Any, Any]]]]: ...
 | |
|     def pipe(
 | |
|         self,
 | |
|         docs: Iterable[Tuple[Doc, Any]],
 | |
|         batch_size: int = ...,
 | |
|         return_matches: bool = ...,
 | |
|         as_tuples: bool = ...,
 | |
|     ) -> Union[
 | |
|         Iterator[Tuple[Tuple[Doc, Any], Any]], Iterator[Tuple[Doc, Any]], Iterator[Doc]
 | |
|     ]: ...
 | |
|     @overload
 | |
|     def __call__(
 | |
|         self,
 | |
|         doclike: Union[Doc, Span],
 | |
|         *,
 | |
|         as_spans: Literal[False] = ...,
 | |
|         allow_missing: bool = ...,
 | |
|         with_alignments: bool = ...
 | |
|     ) -> List[Tuple[int, int, int]]: ...
 | |
|     @overload
 | |
|     def __call__(
 | |
|         self,
 | |
|         doclike: Union[Doc, Span],
 | |
|         *,
 | |
|         as_spans: Literal[True],
 | |
|         allow_missing: bool = ...,
 | |
|         with_alignments: bool = ...
 | |
|     ) -> List[Span]: ...
 | |
|     def _normalize_key(self, key: Any) -> Any: ...
 |