mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 07:57:35 +03:00 
			
		
		
		
	* Add default to util.get_entry_point * Tidy up entry points * Read lookups from entry points * Remove lookup tables and related tests * Add lookups install option * Remove lemmatizer tests * Remove logic to process language data files * Update setup.cfg
		
			
				
	
	
		
			32 lines
		
	
	
		
			948 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			948 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf8
 | |
| from __future__ import unicode_literals
 | |
| 
 | |
| from .stop_words import STOP_WORDS
 | |
| from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
 | |
| from .norm_exceptions import NORM_EXCEPTIONS
 | |
| from .lex_attrs import LEX_ATTRS
 | |
| from ..tokenizer_exceptions import BASE_EXCEPTIONS
 | |
| from ..norm_exceptions import BASE_NORMS
 | |
| from ...language import Language
 | |
| from ...attrs import LANG, NORM
 | |
| from ...util import update_exc, add_lookups
 | |
| 
 | |
| 
 | |
| 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"
 | |
|     lex_attr_getters[NORM] = add_lookups(
 | |
|         Language.Defaults.lex_attr_getters[NORM], BASE_NORMS, NORM_EXCEPTIONS
 | |
|     )
 | |
|     tokenizer_exceptions = update_exc(BASE_EXCEPTIONS, TOKENIZER_EXCEPTIONS)
 | |
|     stop_words = STOP_WORDS
 | |
| 
 | |
| 
 | |
| class Serbian(Language):
 | |
|     lang = "sr"
 | |
|     Defaults = SerbianDefaults
 | |
| 
 | |
| 
 | |
| __all__ = ["Serbian"]
 |