mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
12 lines
406 B
Python
12 lines
406 B
Python
'''Concept core text processing library'''
|
|
from .syntax import RuSyntax, Capitalization
|
|
from .rumodel import Morphology, SemanticRole, NamedEntityRole, WordTag, morpho
|
|
from .ruparser import RuParser, WordToken, Collation
|
|
|
|
from .conceptapi import (
|
|
parse, normalize,
|
|
get_all_forms, inflect, inflect_context, inflect_substitute, inflect_dependant,
|
|
match_all_morpho, find_substr,
|
|
split_tags
|
|
)
|