spaCy/spacy/fr/language_data.py
2017-03-12 13:07:28 +01:00

12 lines
264 B
Python

# coding: utf8
from __future__ import unicode_literals
from .stop_words import STOP_WORDS
from .tokenizer_exceptions import get_tokenizer_exceptions, TOKEN_MATCH
STOP_WORDS = set(STOP_WORDS)
__all__ = ["STOP_WORDS", "get_tokenizer_exceptions", "TOKEN_MATCH"]