spaCy/spacy/matcher/__init__.py

9 lines
236 B
Python
Raw Normal View History

# coding: utf8
from __future__ import unicode_literals
from .matcher import Matcher
from .phrasematcher import PhraseMatcher
from .dependencymatcher import DependencyMatcher
__all__ = ["Matcher", "PhraseMatcher", "DependencyMatcher"]