mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			661 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			661 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from .stop_words import STOP_WORDS
 | 
						|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
 | 
						|
from .lex_attrs import LEX_ATTRS
 | 
						|
from ..tokenizer_exceptions import BASE_EXCEPTIONS
 | 
						|
from ...language import Language
 | 
						|
from ...attrs import LANG
 | 
						|
from ...util import update_exc
 | 
						|
 | 
						|
 | 
						|
class SerbianDefaults(Language.Defaults):
 | 
						|
    lex_attr_getters = dict(Language.Defaults.lex_attr_getters)
 | 
						|
    lex_attr_getters.update(LEX_ATTRS)
 | 
						|
    lex_attr_getters[LANG] = lambda text: "sr"
 | 
						|
    tokenizer_exceptions = update_exc(BASE_EXCEPTIONS, TOKENIZER_EXCEPTIONS)
 | 
						|
    stop_words = STOP_WORDS
 | 
						|
 | 
						|
 | 
						|
class Serbian(Language):
 | 
						|
    lang = "sr"
 | 
						|
    Defaults = SerbianDefaults
 | 
						|
 | 
						|
 | 
						|
__all__ = ["Serbian"]
 |