🗝 KeyzHub
19Keys · community archive
489 bytes raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from .engine import LEVELS, CompressionResult, compress
from .filters import FILLER_PATTERNS, strip_fillers
from .rules import (
    MARKERS,
    completive_done,
    continuative_steady,
    habitual_be,
    prospective_finna,
    zero_copula,
)

__all__ = [
    "FILLER_PATTERNS",
    "LEVELS",
    "MARKERS",
    "CompressionResult",
    "compress",
    "completive_done",
    "continuative_steady",
    "habitual_be",
    "prospective_finna",
    "strip_fillers",
    "zero_copula",
]