mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			631 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			631 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, TOKENIZER_EXCEPTIONS)
 | 
						|
        stop_words = set(STOP_WORDS)
 | 
						|
 | 
						|
 | 
						|
__all__ = ['Danish']
 |