Skip to main content

PyPI - Version PyPI - Python Version PyPI - Downloads codecov

G2Lex

G2Lex compiles pronunciation dictionaries into deterministic, mmap-friendly binary assets for exact, low-memory lookup from Python.

It is designed for G2P, TTS, ASR, forced alignment, and other speech systems that need large read-only pronunciation lexicons without materializing the entire dictionary as Python objects.

g2lex pack lexicon.tsv lexicon.g2lex --format tsv
g2lex lookup lexicon.g2lex example
g2lex inspect lexicon.g2lex
g2lex verify lexicon.tsv lexicon.g2lex --format tsv
g2lex export lexicon.g2lex restored.jsonl --format jsonl
g2lex diff first.g2lex second.g2lex
import g2lex

with g2lex.open("lexicon.g2lex") as lexicon:
    print(lexicon["example"])

Installation

Install the latest release from PyPI:

python -m pip install g2lex

G2Lex 0.1.x is an alpha API and format release. The stable G2Lex Binary Lexicon v1 format is intended to remain readable, while experimental reduction APIs and assets may change.

Supported Python versions are 3.10 through 3.14.

Features

  • Exact typed pronunciation lexicons
  • Scalar and ordered pronunciation variants
  • Context and role-tagged pronunciations
  • Explicit null selector values
  • Membership-only word sets
  • Deterministic single-file G2Lex Binary Lexicon v1 assets
  • mmap-backed lazy lookup
  • Block compression with a bounded runtime cache
  • Source SHA-256 and logical SHA-256 metadata
  • JSON, JSONL, TSV, Kokoro JSON, CMUdict, MFA, PLS subset, and SQLite adapters
  • Lexicon diffing and layering
  • Importlib resource loading
  • Zero mandatory runtime dependencies

Not a phonemizer

G2Lex stores exact pronunciations. It does not predict pronunciations for unknown words, normalize text, tokenize input, tag parts of speech, interpret IPA, or run a fallback engine. Use it as the dictionary layer before eSpeak, a neural G2P model, a rules engine, or another consumer-owned fallback.

def pronounce(word: str, *, lexicon, fallback):
    pronunciation = lexicon.lookup(word)
    return pronunciation if pronunciation is not None else fallback(word)

Python API

The stable package root contains the exact runtime and its source and layering interfaces:

from g2lex import (
    CaseAliasMapping,
    LayerHit,
    LayeredLexicon,
    LexiconLayer,
    TaggedValue,
    WORD_ONLY,
    open,
    open_bytes,
    open_traversable,
    pack_file,
    verify_file,
    export_file,
    compare,
)

Lexicon implements Mapping[str, LexiconValue]. Values may be strings, ordered tuples of strings, TaggedValue, or WORD_ONLY.

Case aliases and layers are explicit utilities. A layer stack uses the first layer containing the raw key, so a tagged record does not fall through to a lower layer:

lexicon = LayeredLexicon(
    [
        LexiconLayer("user", user_lexicon, {}),
        LexiconLayer("domain", domain_lexicon, {}),
        LexiconLayer("base", base_lexicon, {}),
    ]
)

LayeredLexicon.get_hit(word) returns a LayerHit with the selected value, layer name, metadata, and zero-based layer index. Resolution is based on raw key presence, so None and other false-like values intentionally win and do not fall through. Composite iteration yields unique keys in configured layer order and accepts arbitrary mappings; it does not promise globally sorted output.

LayeredLexicon owns its child mappings. It can be used as a context manager, and close() is idempotent. Lookup and iteration after close raise ValueError, matching Lexicon. For package resources, retain the resource lifetime through the lexicon:

from importlib.resources import files
import g2lex

resource = files(my_package.data) / "de_gold.g2lex"
with g2lex.open_traversable(resource) as lexicon:
    pronunciation = lexicon.get("haus")

The g2lex.kokoro module is retained only as a deprecated compatibility helper. It does not retain live lexicon handles or own consumer profiles. New consumers should open resources with the generic APIs and construct their own LexiconLayer stack.

Source adapters

The source remains human-editable and can be compiled during a build or release pipeline.

g2lex pack cmudict.dict cmudict.g2lex --format cmudict
g2lex pack dictionary.mfa dictionary.g2lex --format mfa
g2lex pack source.pls source.g2lex --format pls
g2lex pack lexicon.sqlite lexicon.g2lex --format gruut-sqlite

CMUdict numbered variants such as WORD(2) become ordered variants of WORD. Plain MFA dictionaries are supported. MFA rows carrying probabilities or other extra fields are rejected because G2Lex v1 does not silently discard weighted data.

PLS support is a strict subset consisting of one lexicon language, one default alphabet, one grapheme per lexeme, one or more phoneme values, and an optional role. Aliases, examples, multiple graphemes, per-phoneme alphabet overrides, and arbitrary metadata are rejected rather than flattened.

Binary format

G2Lex Binary Lexicon v1 uses the public identity:

magic:             G2LX
schema:            1
manifest:          g2lex.lexicon.v1
extension:         .g2lex

The implementation uses UTF-8 front-coded key blocks, ordinal records, independently compressed record blocks, checksums, and memory mapping. The runtime decodes keys and values on demand and keeps only a bounded cache of decompressed record blocks.

The manifest records source and logical hashes plus optional language, locale, provider, revision, pronunciation alphabet, role namespace, licensing, attribution, generator, parser identity, and parser version fields. Pronunciation strings remain opaque UTF-8 values.

Experimental reduction

Resident-entry reduction and reconstruction research remains available, but is not part of the stable root API. Import it explicitly:

from g2lex.experimental import ReductionConfig, reduce_lexicon

The compatibility CLI command is also explicitly experimental in purpose:

g2lex reduce source.tsv reduced.lxc --format tsv
g2lex experimental verify-reduced source.tsv reduced.lxc --format tsv

Reduction assets use experimental G2Lex identities (g2lex.asset.v3 and g2lex.asset.v4); readers also accept legacy lexcompact.asset.v2, lexcompact.asset.v3, and lexcompact.asset.v4 files. They are not G2Lex v1 assets. The exact verify command accepts only .g2lex assets, preventing an experimental reduction file from being mistaken for an exact compiled lexicon.

Benchmarks

The repository includes a local storage comparison. It measures JSON and TSV dictionaries, SQLite, and G2Lex for source and compiled bytes, cold open time, traced allocations, lookup percentiles, and sequential iteration:

python -m benchmarks.runtime_storage.benchmark \
  tests/fixtures/generic.tsv --format tsv --repetitions 1000

Results are fixture-specific measurements. The project does not promise a particular compression ratio or performance advantage over SQLite without benchmark evidence.

Development

python -m pip install -e ".[dev]"
python -m pytest
python -m ruff check .

The package has no mandatory runtime dependencies. Source dictionaries and compiled assets remain the responsibility of consumer projects and their licensing or attribution requirements.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

g2lex-0.1.6.tar.gz (119.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

g2lex-0.1.6-py3-none-any.whl (115.4 kB view details)

Uploaded Python 3

File details

Details for the file g2lex-0.1.6.tar.gz.

File metadata

  • Download URL: g2lex-0.1.6.tar.gz
  • Upload date:
  • Size: 119.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for g2lex-0.1.6.tar.gz
Algorithm Hash digest
SHA256 3cd4d11953dbb04d45e9fb390954fd146e469df2027dd749941595d030d4bdb2
MD5 22dcdf390bb79500bdf994cf3d305e3f
BLAKE2b-256 1cc0776573851ada6147ce2d03f92ebab7278c02ced89b52a6b5fcd617f1d26b

See more details on using hashes here.

Provenance

The following attestation bundles were made for g2lex-0.1.6.tar.gz:

Publisher: python-publish.yml on buchwandler/g2lex

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g2lex-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: g2lex-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 115.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for g2lex-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 3cab43864f303f543deb86b49522cb3a0f3ccca188012b970e0721bf5e921438
MD5 0a8d80cd6d849021e388a2c97ba93f1a
BLAKE2b-256 0b80ead3a3352f58be75ea4dae86558d720431a0bf4490f03fffdec8f85556e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for g2lex-0.1.6-py3-none-any.whl:

Publisher: python-publish.yml on buchwandler/g2lex

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.1.7

2 files

This release

0.1.6 This release

2 files

0.1.5

2 files

0.1.3

1 file

0.1.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page