mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
19 lines
407 B
Python
19 lines
407 B
Python
from .stop_words import STOP_WORDS
|
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from ...language import Language
|
|
|
|
|
|
class SerbianDefaults(Language.Defaults):
|
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
|
lex_attr_getters = LEX_ATTRS
|
|
stop_words = STOP_WORDS
|
|
|
|
|
|
class Serbian(Language):
|
|
lang = "sr"
|
|
Defaults = SerbianDefaults
|
|
|
|
|
|
__all__ = ["Serbian"]
|