spaCy/spacy/matcher/__init__.py

6 lines
180 B
Python
Raw Normal View History

from .matcher import Matcher
from .phrasematcher import PhraseMatcher
from .dependencymatcher import DependencyMatcher
__all__ = ["Matcher", "PhraseMatcher", "DependencyMatcher"]