1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-03-18 00:52:20 +03:00
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"]