2017-03-12 15:07:28 +03:00
|
|
|
|
# coding: utf8
|
2016-12-08 21:46:43 +03:00
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
2017-05-09 01:00:46 +03:00
|
|
|
|
from .char_classes import LIST_PUNCT, LIST_ELLIPSES, LIST_QUOTES, LIST_CURRENCY
|
2017-05-27 18:57:10 +03:00
|
|
|
|
from .char_classes import LIST_ICONS, ALPHA_LOWER, ALPHA_UPPER, ALPHA, HYPHENS
|
|
|
|
|
from .char_classes import QUOTES, CURRENCY, UNITS
|
2017-01-08 22:37:39 +03:00
|
|
|
|
|
|
|
|
|
|
2017-05-09 01:00:46 +03:00
|
|
|
|
_prefixes = (['§', '%', '=', r'\+'] + LIST_PUNCT + LIST_ELLIPSES + LIST_QUOTES +
|
2017-05-27 18:57:10 +03:00
|
|
|
|
LIST_CURRENCY + LIST_ICONS)
|
2017-01-08 22:37:39 +03:00
|
|
|
|
|
|
|
|
|
|
2017-05-27 18:57:10 +03:00
|
|
|
|
_suffixes = (LIST_PUNCT + LIST_ELLIPSES + LIST_QUOTES + LIST_ICONS +
|
|
|
|
|
["'s", "'S", "’s", "’S"] +
|
2017-05-09 01:00:46 +03:00
|
|
|
|
[r'(?<=[0-9])\+',
|
|
|
|
|
r'(?<=°[FfCcKk])\.',
|
|
|
|
|
r'(?<=[0-9])(?:{})'.format(CURRENCY),
|
|
|
|
|
r'(?<=[0-9])(?:{})'.format(UNITS),
|
|
|
|
|
r'(?<=[0-9{}{}(?:{})])\.'.format(ALPHA_LOWER, r'%²\-\)\]\+', QUOTES),
|
|
|
|
|
r'(?<=[{a}][{a}])\.'.format(a=ALPHA_UPPER)])
|
2017-01-08 22:37:39 +03:00
|
|
|
|
|
|
|
|
|
|
2017-05-27 18:57:10 +03:00
|
|
|
|
_infixes = (LIST_ELLIPSES + LIST_ICONS +
|
2017-05-09 01:00:46 +03:00
|
|
|
|
[r'(?<=[0-9])[+\-\*^](?=[0-9-])',
|
|
|
|
|
r'(?<=[{}])\.(?=[{}])'.format(ALPHA_LOWER, ALPHA_UPPER),
|
|
|
|
|
r'(?<=[{a}]),(?=[{a}])'.format(a=ALPHA),
|
|
|
|
|
r'(?<=[{a}])[?";:=,.]*(?:{h})(?=[{a}])'.format(a=ALPHA, h=HYPHENS),
|
|
|
|
|
r'(?<=[{a}"])[:<>=/](?=[{a}])'.format(a=ALPHA)])
|
2017-01-08 22:37:39 +03:00
|
|
|
|
|
|
|
|
|
|
2017-05-09 01:00:46 +03:00
|
|
|
|
TOKENIZER_PREFIXES = _prefixes
|
|
|
|
|
TOKENIZER_SUFFIXES = _suffixes
|
|
|
|
|
TOKENIZER_INFIXES = _infixes
|