Skip to main content

python-intl

A small library using PyICU to provide a Python API similar to what the Intl JavaScript API provides. It is not meant to fully behave the same, but instead be close enough so the "same" code works on JavaScript and Python, with similar results.

Status: This is very much work in progress.

Note: There are a lot of tests running the Python implementation against the JavaScript one and comparing the results. In general things should be pretty stable there. Still there are some cases with known differences. Also note that results depend on the ICU version you have installed on your machine.

General notes about the Python adaption

All names will be using the Python style rules. This means instead of formatToParts a method will be called format_to_parts. Also a dictionary key like dayPeriod will be named day_period. Python uses snake case, let's stick to this.

Instead of passing around undefined objects like in JavaScript we want to use well defined and typed dataclasses. This for example is true for the Intl.DateTimeFormat format options, you can use DateTimeFormatOptions as a clean representation of those. Using a dictionary (which behaves the most like those JavaScript objects) is still fine and will automatically converted, as seen in the examples here.

Many objects like for example the DateTimeFormatOptions provide methods to convert their Python representation to a JavaScript compatible JSON format by returning a dict using the JavaScript naming. You can use the to_json method for this.

For example:

import python_intl as Intl

Intl.DateTimeFormatOptions(time_zone_name="short_offset").to_json()
# Will return: {'timeZoneName': 'shortOffset'}

Available Intl classes

Intl.DateTimeFormat

Example usage

import datetime as dt
import python_intl as Intl

# Format a datetime
datetime = dt.datetime(2026, 8, 15)
formatter = Intl.DateTimeFormat("de-DE", {"year": "numeric", "month": "2-digit", "day": "2-digit"})
formatter.format(datetime)
# Result = "15.08.2026"

# Format a datetime range
datetime_till = dt.datetime(2026, 9, 7)
formatter.format_range(datetime, datetime_till)
# Result = "15.08. – 07.09.2026"

Compatibility

Method Status Python name
DateTimeFormat.format
DateTimeFormat.formatToParts DateTimeFormat.format_to_parts
DateTimeFormat.supportedLocalesOf
DateTimeFormat.formatRange DateTimeFormat.format_range
DateTimeFormat.formatRangeToParts DateTimeFormat.format_range_to_parts
DateTimeFormat.resolvedOptions

Intl.Collator

Example usage

import python_intl as Intl

collator = Intl.Collator("de-DE", {"numeric": True})
collator.compare("10", "9")
# Result = 1, which means 9 comes before 10

# You can also use sorted, although this is not available in JavaScript
collator.sorted(["10", "9"])
# Result = ['9', '10']

Compatibility

Method Status Python name
Collator.compare

Note: Not all options are currently supported.

Additional methods

  • Collator.sorted: Somewhat like sorted, but uses the collator for comparison. If you want to sort complex datastructures you can provide a key parameter (like with sorted) to get a comparable string value (for example by returning an attribute).

Installation

Be sure to be able to install PyICU, see the installation docs there: https://gitlab.pyicu.org/main/pyicu#installing-pyicu

Hint: I mainly did run into issues with pkg-config not finding the ICU library, setting PKG_CONFIG_PATH accordingly helps most of the time I guess.

When this is done you should be able to install python-intl using any package manager, like pip install python-intl or uv add python-intl.

Download files

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

Source Distribution

python_intl-0.7.1.tar.gz (9.0 kB view details)

Uploaded Source

Built Distribution

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

python_intl-0.7.1-py3-none-any.whl (10.5 kB view details)

Uploaded Python 3

File details

Details for the file python_intl-0.7.1.tar.gz.

File metadata

  • Download URL: python_intl-0.7.1.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for python_intl-0.7.1.tar.gz
Algorithm Hash digest
SHA256 9123ec9ee5ccb2cd249bf74249d4635f90c199636182c5ee8072c5473a27a2af
MD5 1f384e9509721a93e8f2a46e8801283d
BLAKE2b-256 e44fda179002a0a715bee5ab3641b2619cdca64fbf9047021e9396b7d096986c

See more details on using hashes here.

File details

Details for the file python_intl-0.7.1-py3-none-any.whl.

File metadata

  • Download URL: python_intl-0.7.1-py3-none-any.whl
  • Upload date:
  • Size: 10.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for python_intl-0.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3416121b6023b35249f53dc06822e711eea0d0558f268a606a0957eef1e00434
MD5 d56b40b937c169d6fd9f7830747a8e7b
BLAKE2b-256 d84b4f32d9aace66b2a84f82114c0c568924afa1bcd798dcf9a3c7053bb6f5b8

See more details on using hashes here.

Release history Release notifications | RSS feed

0.8.0

2 files

This release

0.7.1 This release

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.1

2 files

0.2.0

2 files

0.1.0

2 files

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