--- id: espeakng-loader version: "0.2.4" license: unclear license_treatment: unclear maintenance: dormant --- # espeakng-loader — A Python package that provides shared library loader for eSpeak NG License: unclear · Maintenance: dormant · Downloads: 1.0M/mo ## What it is and what it does espeakng-loader is a thin wrapper that locates and loads the espeak-ng shared library, making it available to other Python packages that depend on it for text-to-speech synthesis. It provides three functions: get_library_path() to retrieve the library location, load_library() to load it directly into memory, and make_library_available() to expose it globally for downstream packages. The package ships precompiled wheels for common platforms (Linux x86-64 and arm64, Windows x86-64 and arm64, macOS x86-64 and arm), eliminating the need to compile espeak-ng yourself. It is primarily used as a dependency resolver for packages like phonemizer that wrap espeak-ng's functionality. The package has no runtime dependencies of its own. Use it for: - Set up espeak-ng for phonemizer or other text-to-speech libraries that require it as a system dependency. - Programmatically retrieve the espeak-ng library path to pass to a downstream speech synthesis tool. - Ensure espeak-ng is available in containerized or CI/CD environments without manual system package installation. - Load espeak-ng directly in a Python application that needs phoneme generation or speech synthesis. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Loads the espeak-ng shared library and makes it available to other Python packages that need text-to-speech synthesis via espeak-ng. Yes, if you need espeak-ng for a downstream package like phonemizer and want to avoid manual system library setup. The precompiled wheels make installation straightforward across platforms. However, verify the license terms first (currently unclear) and note that the package is dormant—no active maintenance since January 2025. If you need active support or encounter platform-specific issues, this may not be the right choice. ## Install pip install espeakng-loader uv add espeakng-loader poetry add espeakng-loader ## Installing espeakng-loader Before you install: Medium install friction: the package ships precompiled wheels for Linux (x86-64, arm64), Windows (x86-64, arm64), and macOS (x86-64, arm), but is dormant since its latest release on 2025-01-17. No runtime dependencies. License in practice: License status is unclear—no SPDX identifier or raw license text is declared. Verify the actual license terms before use in proprietary or copyleft-sensitive contexts. Quickstart: pip install espeakng-loader from espeakng_loader import get_library_path, load_library, make_library_available library_path = get_library_path() # Or load_library() to load directly # Or make_library_available() to expose it to other libraries Requires Python >=3.6. The espeak-ng system library must be available on the target platform for the loader to function. Verify before relying: - Whether the espeak-ng system library is bundled or must be installed separately on each platform. - Exact license terms and any attribution requirements for espeak-ng itself. - Whether dormant status (no commits since 2025-01-17) indicates ongoing maintenance or abandonment. ## Package facts - License: not declared (unclear) - Python support: supports_current - Install friction: medium - Maintenance: dormant - Downloads: 1.0M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags espeak-ng library loader, text-to-speech shared library, espeak binding python, phonemizer espeak dependency, speech synthesis library wrapper, text-to-speech, phonetics, system-library-loader [View on SkillFed](https://skillfed.io/packages/espeakng-loader) · [View on PyPI](https://pypi.org/project/espeakng-loader/)