2016-09-25 15:49:00 +03:00
|
|
|
|
# encoding: utf8
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
2016-12-18 18:54:19 +03:00
|
|
|
|
from .. import language_data as base
|
|
|
|
|
from ..language_data import update_exc, strings_to_exc, expand_exc
|
|
|
|
|
from ..symbols import ORTH, LEMMA
|
2016-12-18 17:36:50 +03:00
|
|
|
|
|
|
|
|
|
from .tag_map import TAG_MAP
|
|
|
|
|
from .stop_words import STOP_WORDS
|
|
|
|
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS, ORTH_ONLY
|
|
|
|
|
from .lemma_rules import LEMMA_RULES
|
|
|
|
|
from .morph_rules import MORPH_RULES
|
2016-12-08 15:58:32 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_time_exc(hours):
|
|
|
|
|
exc = {}
|
|
|
|
|
for hour in hours:
|
2017-01-12 13:21:01 +03:00
|
|
|
|
exc["%sa.m." % hour] = [
|
2016-12-08 15:58:32 +03:00
|
|
|
|
{ORTH: hour},
|
|
|
|
|
{ORTH: "a.m."}
|
|
|
|
|
]
|
|
|
|
|
|
2017-01-12 13:21:01 +03:00
|
|
|
|
exc["%sp.m." % hour] = [
|
2016-12-08 15:58:32 +03:00
|
|
|
|
{ORTH: hour},
|
|
|
|
|
{ORTH: "p.m."}
|
|
|
|
|
]
|
|
|
|
|
|
2017-01-12 13:21:01 +03:00
|
|
|
|
exc["%sam" % hour] = [
|
2016-12-08 15:58:32 +03:00
|
|
|
|
{ORTH: hour},
|
|
|
|
|
{ORTH: "am", LEMMA: "a.m."}
|
|
|
|
|
]
|
|
|
|
|
|
2017-01-12 13:21:01 +03:00
|
|
|
|
exc["%spm" % hour] = [
|
2016-12-08 15:58:32 +03:00
|
|
|
|
{ORTH: hour},
|
|
|
|
|
{ORTH: "pm", LEMMA: "p.m."}
|
|
|
|
|
]
|
2017-01-12 13:21:01 +03:00
|
|
|
|
print(exc)
|
2016-12-08 15:58:32 +03:00
|
|
|
|
return exc
|
2016-09-25 15:49:00 +03:00
|
|
|
|
|
|
|
|
|
|
2016-12-18 18:54:19 +03:00
|
|
|
|
TAG_MAP = dict(TAG_MAP)
|
|
|
|
|
STOP_WORDS = set(STOP_WORDS)
|
2016-12-08 14:47:01 +03:00
|
|
|
|
|
2016-09-25 15:49:00 +03:00
|
|
|
|
|
2017-01-08 22:36:00 +03:00
|
|
|
|
TOKENIZER_EXCEPTIONS = dict(TOKENIZER_EXCEPTIONS)
|
2016-12-18 18:54:19 +03:00
|
|
|
|
update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(ORTH_ONLY))
|
2017-01-12 13:21:01 +03:00
|
|
|
|
update_exc(TOKENIZER_EXCEPTIONS, get_time_exc(
|
|
|
|
|
['%d' % hour for hour in range(1, 12 + 1)]))
|
2016-12-18 18:54:19 +03:00
|
|
|
|
update_exc(TOKENIZER_EXCEPTIONS, expand_exc(TOKENIZER_EXCEPTIONS, "'", "’"))
|
|
|
|
|
update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.EMOTICONS))
|
2017-01-08 22:36:00 +03:00
|
|
|
|
update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.ABBREVIATIONS))
|
|
|
|
|
|
2016-12-07 22:29:52 +03:00
|
|
|
|
|
2016-12-18 18:54:19 +03:00
|
|
|
|
__all__ = ["TOKENIZER_EXCEPTIONS", "TAG_MAP", "STOP_WORDS", "LEMMA_RULES", "MORPH_RULES"]
|