mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
22 lines
548 B
Python
22 lines
548 B
Python
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from .punctuation import TOKENIZER_INFIXES, TOKENIZER_PREFIXES
|
|
from ...language import Language
|
|
|
|
|
|
class PortugueseDefaults(Language.Defaults):
|
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
|
infixes = TOKENIZER_INFIXES
|
|
prefixes = TOKENIZER_PREFIXES
|
|
lex_attr_getters = LEX_ATTRS
|
|
stop_words = STOP_WORDS
|
|
|
|
|
|
class Portuguese(Language):
|
|
lang = "pt"
|
|
Defaults = PortugueseDefaults
|
|
|
|
|
|
__all__ = ["Portuguese"]
|