Text to sentence splitter using heuristic algorithm by Philipp Koehn and Josh Schroeder. Current version 1.4, release cadence is low (no recent updates).
pip install sentence-splitterNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic usage: split text into sentences for English.
Always pass language='en' (or your target language) explicitly.
Preprocess text to handle known abbreviations or use a more robust library if high accuracy is needed.
Consider alternatives like spaCy or nltk for ongoing support.
Install with 'pip install sentence-splitter' and import with 'from sentence_splitter import split_text_into_sentences'.
Call the function with text parameter: split_text_into_sentences(text='Your text.', language='en').
No dependency data recorded yet.