mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-30 23:47:31 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			242 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			242 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals, print_function
 | |
| 
 | |
| from os import path
 | |
| 
 | |
| from ..language import Language
 | |
| 
 | |
| 
 | |
| class Italian(Language):
 | |
|     @classmethod
 | |
|     def default_data_dir(cls):
 | |
|         return path.join(path.dirname(__file__), 'data')
 |