Sentence Split

This module splits the report into sentences using NLTK.

Usage:
    medtext-ssplit ssplit [options] -i FILE -o FILE
    medtext-ssplit download

Options:
    -i FILE         Input file
    -o FILE         Output file
    --overwrite     Overwrite the existing file
    --newline       Whether to treat newlines as sentence breaks.
from medtext_ssplit.models.sentence_split_nltk import BioCSSplitterNLTK
processor = BioCSSplitterNLTK(newline=argv['--newline'])