Skip to main content
Pre-release

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

ovos-lang-parser

Map spoken and written language names to standard IETF/BCP-47 language codes — and back — in many languages, offline, with a two-function API.

"Brazilian Portuguese"  ->  "pt-br"
"alemão" (Portuguese)   ->  "de"
"pt-br"  ->  "Português do Brasil"   (rendered in Portuguese)
"pt-br"  ->  "Brazilian Portuguese"  (rendered in English)

The library understands language names written in 21 languages (see Coverage). A user can say "French" in English, "français" in French, or "Französisch" in German, and each resolves to the code fr. This is the piece you need whenever a human names a language in free text and your code needs a canonical code to act on — routing to a translation/TTS/STT engine, tagging an entity, or normalizing a messy label.

It ships as part of OpenVoiceOS, but has no OVOS runtime dependency and is useful in any plain-Python project.

Install

pip install ovos-lang-parser
# or
uv add ovos-lang-parser

Runtime dependencies are small: langcodes for tag normalization and ovos-utils for the fuzzy matcher. No models, no network calls — the wordlists are bundled.

30-second quickstart

from ovos_lang_parser import extract_langcode, pronounce_lang

# name -> code (second arg is the language the text is written in)
print(extract_langcode("Brazilian Portuguese", "en"))          # -> ('pt-br', 1.0)
print(extract_langcode("translate this to German", "en"))      # -> ('de', 1.0)

# code -> name, rendered in a chosen language
print(pronounce_lang("de", "en"))   # -> German
print(pronounce_lang("de", "pt"))   # -> Alemão

That is the whole surface for most callers: extract_langcode reads a name out of text and returns (code, confidence); pronounce_lang turns a code back into a human name.

The API in one screen

Function Purpose Returns
extract_langcode(text, lang) Find the language named in text (written in lang) (langcode, confidence) — confidence 0.01.0; an exact name match is 1.0
pronounce_lang(langcode, lang) Human name of langcode, rendered in lang str (falls back to the base tag, then to langcode unchanged)
get_lang_data(lang) The full {name: code} table for lang dict[str, str]
LANGS Codes of the languages a name can be written in list[str]

In both functions lang is the language the names are written in, not the language being named. extract_langcode("français", "fr") and extract_langcode("French", "en") both give fr. See docs/api.md for full signatures, the confidence model, and edge behavior.

Use it outside OVOS

The same two functions cover a range of standalone jobs. Each example below is a runnable script under examples/pip install ovos-lang-parser and run it, no OVOS stack required.

Entity extraction / NER — pull a language out of free text

You have a sentence and want to know which language it mentions.

from ovos_lang_parser import extract_langcode

for text in ["translate this to Brazilian Portuguese",
             "can you say it in Mandarin Chinese?",
             "I'd like the subtitles in Greek"]:
    code, conf = extract_langcode(text, "en")
    if conf >= 0.7:
        print(f"{text!r} -> {code} ({conf:.2f})")

Because matching is fuzzy, apply a confidence threshold to decide whether a language was really mentioned. Full script: examples/ner_language_mentions.py.

Routing — pick a translation / TTS / STT engine by name

A user names a target language; you resolve it to a code and hand that to whatever engine your pipeline drives.

from ovos_lang_parser import extract_langcode

def resolve_target(user_request, spoken_in="en"):
    code, conf = extract_langcode(user_request, spoken_in)
    return code if conf >= 0.7 else None

print(resolve_target("read it back to me in German"))   # -> de  (feed to your TTS)

Full script (with a mock engine table): examples/routing.py.

Normalization — canonicalize messy names and autonyms to one code

Aliases, autonyms, and localized spellings all collapse to a single canonical code, so you can deduplicate and standardize labels regardless of how they were written.

from ovos_lang_parser import extract_langcode

labels = [("Deutsch", "de"), ("alemão", "pt"), ("German", "en"), ("allemand", "fr")]
for name, written_in in labels:
    code, _ = extract_langcode(name, written_in)
    print(f"{name:>10} -> {code}")   # all -> de

Full script: examples/normalization.py.

In an OVOS skill vs. standalone

The API is identical; only where you get text and lang differs.

# Standalone language-routing utility
code, conf = extract_langcode(user_input, "en")

# Inside an OVOS skill — the utterance and its language come from the session
class MySkill(OVOSSkill):
    def handle_translate(self, message):
        utterance = message.data["utterance"]
        code, conf = extract_langcode(utterance, self.lang)
        ...

Coverage

Names can be written in 21 languages; each carries a table of a few hundred target languages keyed by ISO 639 code.

an Aragonese ar Arabic ast Asturian bg Bulgarian
ca Catalan da Danish de German en English
es Spanish eu Basque fr French fy Frisian
gl Galician hr Croatian it Italian kab Kabyle
nl Dutch oc Occitan pt Portuguese ro Romanian
sk Slovak

The live list is always ovos_lang_parser.LANGS. Adding a language is a matter of dropping in one JSON file — see docs/coverage.md and docs/extending.md.

Documentation

Related projects

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

ovos_lang_parser-0.7.1a3.tar.gz (45.3 kB view details)

Uploaded Source

Built Distribution

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

ovos_lang_parser-0.7.1a3-py3-none-any.whl (45.1 kB view details)

Uploaded Python 3

File details

Details for the file ovos_lang_parser-0.7.1a3.tar.gz.

File metadata

  • Download URL: ovos_lang_parser-0.7.1a3.tar.gz
  • Upload date:
  • Size: 45.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ovos_lang_parser-0.7.1a3.tar.gz
Algorithm Hash digest
SHA256 70a98493c24193818008bbde13dff4656834b286baa3cdc945559dc96ec5e20d
MD5 782e455656c3805d84621e2df2d709eb
BLAKE2b-256 807e6ec9f476f232e96d6c8b314f3108fcb885aecc420750fc6c25c250e5386b

See more details on using hashes here.

File details

Details for the file ovos_lang_parser-0.7.1a3-py3-none-any.whl.

File metadata

File hashes

Hashes for ovos_lang_parser-0.7.1a3-py3-none-any.whl
Algorithm Hash digest
SHA256 9d1c6e85da2513c753158a1ed4f432dea9235bb289fb93ec9117068f296edd8a
MD5 7424c99438bf501a6256a91c6855569e
BLAKE2b-256 38ffd99a67c90aacb1a148244b24cfa939247a73e0a6b5dd2818fba2835dea73

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page