SkillAgentSearch skills...

Syllabipy

universal syllabification algorithms

Install / Use

/learn @henchc/Syllabipy
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

syllabipy

Collection of syllabification algorithms designed to be universal, aimed at low-resource languages without look-up techniques.

Note: SonoriPy has been incorporated into NLTK for Python; LegaliPy and SonoriPy have been incorporated into Talisman for JavaScript. This repo will not be updated, we recommend you use one of these two libraries.

installation

syllabipy can be installed with pip:

$ pip install syllabipy

LegaliPy

To get legal onsets for variable text:

>>> from syllabipy.legalipy import getOnsets
>>> getOnsets(text)

To syllabify a word:

>>> from syllabipy.legalipy import LegaliPy
>>> LegaliPy(word, getOnsets(text))

Command line usage to syllabify a text file:

$ python legalipy.py text.txt

SonoriPy

To syllabify a word:

>>> from syllabipy.sonoripy import SonoriPy
>>> SonoriPy("justification")
['jus', 'ti', 'fi', 'ca', 'tion']

Command line usage to syllabify a text file:

$ python sonoripy.py text.txt

Related Skills

View on GitHub
GitHub Stars46
CategoryDevelopment
Updated2mo ago
Forks8

Languages

Python

Security Score

90/100

Audited on Jan 8, 2026

No findings