Syllapy

0.7.2 · maintenance · verified Wed Apr 15

Syllapy is a Python library designed for fast estimation of syllable counts in English words. It is currently at version 0.7.2. The project's GitHub repository was archived in October 2025, indicating it is no longer actively maintained.

Warnings

Install

Imports

Quickstart

This example demonstrates how to import the `syllapy` library and use its `count` function to determine the number of syllables in a given English word.

import syllapy

word = "additional"
syllable_count = syllapy.count(word)
print(f"The word '{word}' has {syllable_count} syllables.")

view raw JSON →