mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
19 lines
383 B
Python
19 lines
383 B
Python
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from .punctuation import TOKENIZER_INFIXES
|
|
from ...language import Language
|
|
|
|
|
|
class SetswanaDefaults(Language.Defaults):
|
|
infixes = TOKENIZER_INFIXES
|
|
stop_words = STOP_WORDS
|
|
lex_attr_getters = LEX_ATTRS
|
|
|
|
|
|
class Setswana(Language):
|
|
lang = "tn"
|
|
Defaults = SetswanaDefaults
|
|
|
|
|
|
__all__ = ["Setswana"]
|