mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-30 23:47:31 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			230 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			230 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from .stop_words import STOP_WORDS
 | |
| from ...language import Language
 | |
| 
 | |
| 
 | |
| class CzechDefaults(Language.Defaults):
 | |
|     stop_words = STOP_WORDS
 | |
| 
 | |
| 
 | |
| class Czech(Language):
 | |
|     lang = "cs"
 | |
|     Defaults = CzechDefaults
 | |
| 
 | |
| 
 | |
| __all__ = ["Czech"]
 |