mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 04:50:36 +03:00
15 lines
479 B
Python
15 lines
479 B
Python
''' Concept core text processing library. '''
|
|
# pylint: skip-file
|
|
from .syntax import RuSyntax, Capitalization
|
|
from .rumodel import Morphology, SemanticRole, WordTag, morpho
|
|
from .ruparser import PhraseParser, WordToken, Collation
|
|
|
|
from .conceptapi import (
|
|
parse, normalize,
|
|
get_all_forms, inflect, inflect_context, inflect_substitute, inflect_dependant,
|
|
match_all_morpho, find_substr,
|
|
split_tags
|
|
)
|
|
|
|
# TODO: implement Part of speech transition for VERB <-> NOUN
|