Add global abbreviations data

This commit is contained in:
Ines Montani 2017-01-08 20:34:03 +01:00
parent de5aa92bc2
commit 7c3cb2a652
2 changed files with 44 additions and 0 deletions

View File

@ -1,3 +1,4 @@
from .abbreviations import *
from .emoticons import * from .emoticons import *
from .punctuation import * from .punctuation import *
from .tag_map import * from .tag_map import *

View File

@ -0,0 +1,43 @@
# encoding: 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" ]