Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

g2p_barranquenho - Barranquenho Phonemizer

This repository holds a grapheme-to-phoneme (G2P) converter for the Barranquenho language. Give it written Barranquenho text and it returns IPA.

Barranquenho is an Ibero-Romance variety spoken in the municipality of Barrancos, Portugal. It shares several features with the neighbouring Extremaduran and Andalusian varieties of Spanish: coda-/s/ aspiration, betacism (v becomes [b]), the alveolar trill, and southern vowel reduction.

Install

pip install -e .

This pulls in orthography2ipa automatically.

Architecture

The phonology lives in the shared orthography2ipa language spec ext-PT-x-barrancos. That spec holds the grapheme table, the allophone rules, the stress model, and the cross-word sandhi rules. It is the single source of truth for how Barranquenho is realised. This package is a thin wrapper around orthography2ipa.G2P, driven by that spec:

  • transcribe(text) phonemises a whole utterance, so the spec's cross-word sandhi applies (coda-/s/ aspiration and deletion, article and conjunction destressing, vowel elision at word boundaries).
  • phonemize(word) phonemises one word and returns its phones as a list.
  • The package handles only caller-side text handling (case and Unicode normalisation) and this stable surface. The linguistic rules belong to the spec, so a rule improvement is an upstream edit that every consumer shares.

Lexical stress is marked with ˈ before the stressed syllable. Nasal vowels carry the combining tilde U+0303 (ɐ̃). A coda m or n is absorbed into the preceding nasal vowel rather than surfacing as its own segment.

Usage

phonemize takes one word and returns a list of IPA phones. Join the list for a compact string.

from g2p_barranquenho import phonemize

phonemize("boca")      # ['ˈb', 'ɔ', 'k', 'ɐ']
phonemize("manhán")    # ['m', 'ɐ', 'ˈɲ', 'ɐ̃']
phonemize("ambu")      # ['ˈɐ̃', 'b', 'u']

"".join(phonemize("cahtelu"))   # 'kɐˈhtɛlu'

transcribe takes a whole utterance and applies cross-word sandhi.

from g2p_barranquenho import transcribe

transcribe("O tempu não ehtá nada bom agora.")
# 'o ˈtẽpu ˈnɐ̃w̃ eˈhta ˈnadɐ ˈbõ ɐˈɡɔɾɐ'

transcribe("Comprámos pão e vinho na feira de Barrancos.")
# 'kõˈpɾamu ˈpɐ̃w̃ i ˈbiɲu nɐ ˈfejɾɐ dɨ bɐˈrɐ̃ku'

The BarranquenhoG2PPlugin class in g2p_barranquenho.plugin exposes the same engine behind the string-returning transcribe and transcribe_word methods other components in the toolchain expect.

Numbers

Digits carry no orthography the lattice can read, so the normalizer stage spells numeric tokens out into Barranquenho words before transcription. This runs by default in transcribe. Pass expand_numbers=False to leave digits as they are.

from g2p_barranquenho import transcribe
from g2p_barranquenho.number_utils import normalize_numbers, BarranquenhoNumberParser

transcribe("tenho 3 gatu")                       # 3 -> 'treh', then transcribed
transcribe("tenho 3 gatu", expand_numbers=False)  # digit left to the spec

# spell numbers to text without phonemising
normalize_numbers("tenho 20 anu")                # 'tenho binti anu'
normalize_numbers("la casa 1ª")                  # 'la casa primeira' (º masc / ª fem)

# the verbaliser directly
p = BarranquenhoNumberParser()
p.cardinal(256)              # 'duzentuh e cinquenta e seih'
p.cardinal(2, "feminine")    # 'duah'
p.ordinal(1, "feminine")     # 'primeira'
p.pronounce_token("3,5")     # 'treh birgula cincu'

Numeral groups join with the copulative e ("and"). Navas Sánchez-Élez (2011) documents no numeral paradigm, so most forms come from the Convenção Ortográfica do Barranquenho (2025) spelling rules: final -o becomes -u, final -e becomes -i, coda -s is written -h, and v becomes b. The lexemes Navas does attest (2 douh, 3 treh, 6 seih, 7 seti, 10 deh, 14 catorzi, 20 binti, 100 cien, 1000 mil, 1st primeiru) live in number_utils.ATTESTED. Everything else lives in number_utils.DERIVED, so a reader can tell citation from reconstruction.

Documentation

Related projects

Sources

The ext-PT-x-barrancos spec derives from the coordinated normative suite produced under the Programa de Preservação e Valorização da Língua e Cultura Barranquenhas, plus the phonetic descriptions of Navas Sánchez-Élez:

  • Convenção Ortográfica do Barranquenho (June 2025). Câmara Municipal de Barrancos / II Congresso Barranquenho working group.
  • Gramática Básica de Barranquenho (July 2025). Maria Filomena Gonçalves, María Victoria Navas, Victor M. Diogo Correia. Universidade de Évora, 1ª edição. ISBN 978-972-778-464-6.
  • Dicionário de Barranquenho (2025). Maria Filomena Gonçalves, María Victoria Navas, Vera Ferreira. Universidade de Évora, 1ª edição. ISBN 978-972-778-460-8.
  • Navas Sánchez-Élez, M. V. (2011). El barranqueño: un modelo de lenguas en contacto. Madrid: Editorial Complutense.

License

Apache-2.0. See LICENSE.

Download files

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

Source Distribution

g2p_barranquenho-0.2.1a1.tar.gz (21.1 kB view details)

Uploaded Source

Built Distribution

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

g2p_barranquenho-0.2.1a1-py3-none-any.whl (16.1 kB view details)

Uploaded Python 3

File details

Details for the file g2p_barranquenho-0.2.1a1.tar.gz.

File metadata

  • Download URL: g2p_barranquenho-0.2.1a1.tar.gz
  • Upload date:
  • Size: 21.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for g2p_barranquenho-0.2.1a1.tar.gz
Algorithm Hash digest
SHA256 1ac79dcf1c487fe1c1dafa47dd24d96f846c965f64c65297f140d372f45f2bc8
MD5 d64a4bad46404061366830e5582ebac9
BLAKE2b-256 b00522c2922b47d123d8506d64dde30f91b7226d8581f13e543a7dc92672911c

See more details on using hashes here.

File details

Details for the file g2p_barranquenho-0.2.1a1-py3-none-any.whl.

File metadata

File hashes

Hashes for g2p_barranquenho-0.2.1a1-py3-none-any.whl
Algorithm Hash digest
SHA256 282abba4e2cc1874e8802de044f76c0a5cf9b44ef5ac0e114e3f994b2e8f8e0b
MD5 6347773e7f113a24fa39111d6d29c54e
BLAKE2b-256 1efa4e1f40f4d11a0d4dc2b44c34e52303735170eeacbce701b004b67a64f2ca

See more details on using hashes here.

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