mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
12 lines
264 B
Python
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"]
|