Spaces:
Running
Running
File size: 403 Bytes
d093ea4 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# -*- coding: utf-8 -*-
from pysbd.abbreviation_replacer import AbbreviationReplacer
from pysbd.lang.common import Common, Standard
class English(Common, Standard):
iso_code = 'en'
class AbbreviationReplacer(AbbreviationReplacer):
SENTENCE_STARTERS = "A Being Did For He How However I In It Millions "\
"More She That The There They We What When Where Who Why".split(" ")
|