mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
25 lines
609 B
Python
25 lines
609 B
Python
|
# coding: utf8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
||
|
from .stop_words import STOP_WORDS
|
||
|
|
||
|
from ..tokenizer_exceptions import BASE_EXCEPTIONS
|
||
|
from ...language import Language
|
||
|
from ...attrs import LANG
|
||
|
from ...util import update_exc
|
||
|
|
||
|
|
||
|
class Danish(Language):
|
||
|
lang = 'da'
|
||
|
|
||
|
class Defaults(Language.Defaults):
|
||
|
lex_attr_getters = dict(Language.Defaults.lex_attr_getters)
|
||
|
lex_attr_getters[LANG] = lambda text: 'da'
|
||
|
|
||
|
tokenizer_exceptions = update_exc(BASE_EXCEPTIONS)
|
||
|
stop_words = set(STOP_WORDS)
|
||
|
|
||
|
|
||
|
__all__ = ['Danish']
|