Skip to main content

A library and CLI for translating Python applications and libraries.

Project description

l10n

A library and CLI for translating Python applications and libraries.

Our main design principle is "Simple things should be simple, complex things should be possible". We streamline the workflow that fits 95% of the projects and allow to configure every small detail to make it possible to fit the remaining 5%. Think about l10n as a high-level and friendly library comparing to low-level and less friendly locale, gettext, and babel.

Features:

  • Simple. We stripped away all unnecessary steps and concepts. All that's left is what is actually relevant for Python.
  • Type-safe. All other tools match translation.
  • Explicit. No global state, no variable injection. You know exactly what gets translated and to what language.
  • Zero-dependency runtime. There are a few small dependencies for CLI but they get installed only on your dev environment. On the production goes only one small library, l10n itself.
  • Pure Python. You can use it with PyPy, Numba, and any other interpreter.
  • Zero configuration. The tool knows about the modern Python packaging and automatically discovers the project structure, name, version, and all other relevant metadata.
  • Well documented. We make sure that you can pick up the tool without any prior knowledge of the topic.
  • Compatible with other tools. We use *.po and *.mo files that are compatible with gettext toolchain and all other translation tools.
  • Self-sufficient, no other tools required.
  • Asyncio-compatible and race-condition-free.
  • Fast. All teanslations on the production are compiled into a small and fast binary format.
  • Small. We don't include any generated data into the library distribution. Just a little of Python code.
  • Lazy. Any data is loaded only when you need it.
  • Can be used in libraries. The compiled translations are automatically placed next to your Python code and discovered at runtime.
  • Versatile. Most of the libraries in the wild are focused on web applications. This library fits any Python project.

l10n in 30 seconds

Install l10n:

python3 -m pip install 'l10n[cli]'

And there are all the changes you need to do in your code to support translations for a string:

from l10n import Locales
locales = Locales()

def say_hello(lang='en'):
    loc = locales[lang]
    msg = loc.get('Hello, world!')
    print(msg)

Now, let's translate it to Ukrainian:

  1. Extract all strings from the code that need to be translated:

    python3 -m l10n extract --lang uk
    
  2. Translate all extracted strings using Google Translate:

    python3 -m l10n translate
    
  3. Compile all translations into the binary format:

    python3 -m l10n compile
    

That's all! Now, your code supports translations:

from example import say_hello
say_hello(lang='uk')
# Привіт Світ!

If you want to manually adjust the translation text, just edit the languages/en.po file and run compile again. You don't even need to restart your app!

Read more in the documentation: l10n.orsinium.dev.

Project details


Download files

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

Source Distribution

l10n-0.1.1.tar.gz (28.9 kB view details)

Uploaded Source

Built Distribution

l10n-0.1.1-py3-none-any.whl (17.3 kB view details)

Uploaded Python 3

File details

Details for the file l10n-0.1.1.tar.gz.

File metadata

  • Download URL: l10n-0.1.1.tar.gz
  • Upload date:
  • Size: 28.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.28.2

File hashes

Hashes for l10n-0.1.1.tar.gz
Algorithm Hash digest
SHA256 529a0d93d4e868bf7201eb40b4296960ebea398f9a259e698e37404f7c4d6f85
MD5 cfeddd864b06b01c1380439b2bfa5c88
BLAKE2b-256 e2aa59dce42a597b400920706e378133441ba2da98dc1b825b2f03205a6d7590

See more details on using hashes here.

File details

Details for the file l10n-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: l10n-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.28.2

File hashes

Hashes for l10n-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 482d426844fbb8fe656f7611e50b8d5a259c1832c9eb40a45491f0b98155a89b
MD5 065e1de5f81ae0b5d1c496ee2154be9d
BLAKE2b-256 4501bc40808d50f9c500c7efbc018b369b370480821d9bec7a3940946eb933bf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page