mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
b8e720fdb9
* Extend langs in initialize tests * Fix az init
17 lines
320 B
Python
17 lines
320 B
Python
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from ...language import Language
|
|
|
|
|
|
class AzerbaijaniDefaults(Language.Defaults):
|
|
lex_attr_getters = LEX_ATTRS
|
|
stop_words = STOP_WORDS
|
|
|
|
|
|
class Azerbaijani(Language):
|
|
lang = "az"
|
|
Defaults = AzerbaijaniDefaults
|
|
|
|
|
|
__all__ = ["Azerbaijani"]
|