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