{"id":22415785,"url":"https://github.com/xmas7/syllable-counter","last_synced_at":"2026-02-03T10:32:24.222Z","repository":{"id":143167505,"uuid":"533099054","full_name":"xmas7/syllable-counter","owner":"xmas7","description":"To use this Java library, you need Java 8 and Maven 3.","archived":false,"fork":false,"pushed_at":"2022-09-06T00:09:42.000Z","size":32,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-24T06:42:40.144Z","etag":null,"topics":["java","library","maven"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xmas7.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-09-06T00:07:52.000Z","updated_at":"2024-05-20T11:11:39.000Z","dependencies_parsed_at":"2023-06-02T17:30:36.188Z","dependency_job_id":null,"html_url":"https://github.com/xmas7/syllable-counter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/xmas7/syllable-counter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xmas7%2Fsyllable-counter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xmas7%2Fsyllable-counter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xmas7%2Fsyllable-counter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xmas7%2Fsyllable-counter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xmas7","download_url":"https://codeload.github.com/xmas7/syllable-counter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xmas7%2Fsyllable-counter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29041352,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T10:09:22.136Z","status":"ssl_error","status_checked_at":"2026-02-03T10:09:16.814Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","library","maven"],"created_at":"2024-12-05T15:13:42.414Z","updated_at":"2026-02-03T10:32:24.195Z","avatar_url":"https://github.com/xmas7.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"Syllable Counter\n===\n[![Build Status](https://travis-ci.org/m09/syllable-counter.svg?branch=master)](https://travis-ci.org/m09/syllable-counter) [![Maven Central version](https://img.shields.io/maven-central/v/eu.crydee/syllable-counter.svg)](http://search.maven.org/#search|ga|1|a%3A%22syllable-counter%22) [![Coverage Status](https://coveralls.io/repos/m09/syllable-counter/badge.svg?branch=master)](https://coveralls.io/r/m09/syllable-counter?branch=master)\n\nUses a fallback method—based on the [NLTK readability plugin][nltk] by\nThomas Jakobsen \u003cthomj05@student.uia.no\u003e and Thomas Skardal\n\u003cthomas04@student.uia.no\u003e. This NLTK plugin is itself based on the\nalgorithm implemented in the [Lingua::EN::Syllable perl module][perl]\nby Greg Fast \u003cgdf@imsa.edu\u003e.\n\nThanks to them for making their work available.\n\n[nltk]: https://code.google.com/p/nltk/source/browse/trunk/nltk_contrib/nltk_contrib/readability/syllables_en.py\n\n[perl]: http://search.cpan.org/~neilb/Lingua-EN-Syllable-0.26/\n\nRequirements\n------------\n\nTo use this Java library, you need Java 8 and Maven 3.\n\nInstallation\n------------\n\nWith Maven, you can just add the following to the `dependencies`\nsection of your `pom.xml`:\n\n```xml\n    \u003cdependency\u003e\n      \u003cgroupId\u003eeu.crydee\u003c/groupId\u003e\n      \u003cartifactId\u003esyllable-counter\u003c/artifactId\u003e\n      \u003cversion\u003e4.0.1\u003c/version\u003e\n    \u003c/dependency\u003e\n```\n\nIf you do not use maven, you can still [download][dl] the jar from\nMaven Central and use it as appropriate.\n\n[dl]: http://search.maven.org/remotecontent?filepath=eu/crydee/syllable-counter/4.0.1/syllable-counter-4.0.1.jar\n\nUsage\n-----\n\nThe usage is trivial. To retrieve the number of syllables of a word,\nuse the `count` method:\n\n```java\nimport eu.crydee.syllablecounter.SyllableCounter;\n\n...\n\nSyllableCounter sc = new SyllableCounter();\nint myCount = sc.count(\"facility\");\n// myCount holds 4\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxmas7%2Fsyllable-counter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxmas7%2Fsyllable-counter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxmas7%2Fsyllable-counter/lists"}