mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 13:47:13 +03:00
11 lines
151 B
Python
11 lines
151 B
Python
# encoding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
from .stop_words import STOP_WORDS
|
|
|
|
|
|
STOP_WORDS = set(STOP_WORDS)
|
|
|
|
|
|
__all__ = ["STOP_WORDS"]
|