mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
22 lines
563 B
Python
22 lines
563 B
Python
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from .punctuation import TOKENIZER_SUFFIXES
|
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
from ...language import Language
|
|
|
|
|
|
class ArabicDefaults(Language.Defaults):
|
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
|
suffixes = TOKENIZER_SUFFIXES
|
|
stop_words = STOP_WORDS
|
|
lex_attr_getters = LEX_ATTRS
|
|
writing_system = {"direction": "rtl", "has_case": False, "has_letters": True}
|
|
|
|
|
|
class Arabic(Language):
|
|
Defaults = ArabicDefaults
|
|
lang = "ar"
|
|
|
|
|
|
__all__ = ["Arabic"]
|