mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 07:57:35 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			474 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			474 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from .lex_attrs import LEX_ATTRS
 | |
| from .punctuation import TOKENIZER_INFIXES
 | |
| from .stop_words import STOP_WORDS
 | |
| from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
 | |
| from ...language import Language
 | |
| 
 | |
| 
 | |
| class TatarDefaults(Language.Defaults):
 | |
|     tokenizer_exceptions = TOKENIZER_EXCEPTIONS
 | |
|     infixes = TOKENIZER_INFIXES
 | |
|     lex_attr_getters = LEX_ATTRS
 | |
|     stop_words = STOP_WORDS
 | |
| 
 | |
| 
 | |
| class Tatar(Language):
 | |
|     lang = "tt"
 | |
|     Defaults = TatarDefaults
 | |
| 
 | |
| 
 | |
| __all__ = ["Tatar"]
 |