mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			459 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			459 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding: utf8
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
 | 
						|
ABBREVIATIONS = [
 | 
						|
    "'",
 | 
						|
    "\\\")",
 | 
						|
    "<space>",
 | 
						|
    "''",
 | 
						|
    "C++",
 | 
						|
    "a.",
 | 
						|
    "b.",
 | 
						|
    "c.",
 | 
						|
    "d.",
 | 
						|
    "e.",
 | 
						|
    "f.",
 | 
						|
    "g.",
 | 
						|
    "h.",
 | 
						|
    "i.",
 | 
						|
    "j.",
 | 
						|
    "k.",
 | 
						|
    "l.",
 | 
						|
    "m.",
 | 
						|
    "n.",
 | 
						|
    "o.",
 | 
						|
    "p.",
 | 
						|
    "q.",
 | 
						|
    "r.",
 | 
						|
    "s.",
 | 
						|
    "t.",
 | 
						|
    "u.",
 | 
						|
    "v.",
 | 
						|
    "w.",
 | 
						|
    "x.",
 | 
						|
    "y.",
 | 
						|
    "z.",
 | 
						|
    "ä.",
 | 
						|
    "ö.",
 | 
						|
    "ü."
 | 
						|
]
 | 
						|
 | 
						|
 | 
						|
__all__ = [ "ABBREVIATIONS" ]
 |