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):
    value = lexicon.get(word)
    return value if value 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,
    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, {}),
    ]
)

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")

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.3.tar.gz (92.0 kB view details)

Uploaded Source

File details

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

File metadata

  • Download URL: g2lex-0.1.3.tar.gz
  • Upload date:
  • Size: 92.0 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.3.tar.gz
Algorithm Hash digest
SHA256 e6576d1a2645e43913bc71ae4bcc43e6c74eee31a03a3e841cace0f4d5975506
MD5 d9feb4635f85b7b36c5126ba8ac66753
BLAKE2b-256 022c7179151076ebb58f2b73145b90b0d5f2ba6efe194c9b4c4f83ab53f33813

See more details on using hashes here.

Provenance

The following attestation bundles were made for g2lex-0.1.3.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.

Release history Release notifications | RSS feed

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

This release

0.1.3 This release

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