pysyllables 1.0.3

Creator: bradpython12

Last updated:

0 purchases

pysyllables 1.0.3 Image
pysyllables 1.0.3 Images
Add to Cart

Description:

pysyllables 1.0.3

pysyllables
An in-memory syllable count dictionary for North American English derived from
the CMU Pronouncing Dictionary.
>>> from pysyllables import get_syllable_count
>>> get_syllable_count("fabulous")
3
>>> get_syllable_count("word-that-doesn't-exist")
None

Where do these syllable counts come from?
From the CMU Pronouncing Dictionary,
an open-source machine-readable pronunciation dictionary for North American English
that contains over 134,000 words and their pronunciations.
By counting the number of lexical stress markers in each word's pronunciation, we can
compute the # of syllables in each word. This library ships with a file that maps each
word to a syllable count in pysyllables/syllable-counts.txt
How does one generate pysyllables/syllable-counts.txt?
scripts/download_syllable_counts.sh downloads
the CMU Pronouncing Dictionary, computes each word's syllable count, and emits
pysyllables/syllable-counts.txt.
Should there be a new version of the CMU Pronouncing Dictionary, update the source in
scripts/download_syllable_counts.sh.
Contributing
Questions & contributions welcome -- please open an issue or, even better, a PR!

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.