mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			243 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			243 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from .stop_words import STOP_WORDS
 | 
						|
 | 
						|
from ...language import Language
 | 
						|
 | 
						|
 | 
						|
class GujaratiDefaults(Language.Defaults):
 | 
						|
    stop_words = STOP_WORDS
 | 
						|
 | 
						|
 | 
						|
class Gujarati(Language):
 | 
						|
    lang = "gu"
 | 
						|
    Defaults = GujaratiDefaults
 | 
						|
 | 
						|
 | 
						|
__all__ = ["Gujarati"]
 |