Skip to main content

Internationalized Domain Names in Applications (IDNA)

Project description

Internationalized Domain Names in Applications (IDNA)

Support for Internationalized Domain Names in Applications (IDNA) and Unicode IDNA Compatibility Processing. It supersedes the standard library's encodings.idna, which only implements the 2003 specification, offering broader script coverage and limiting domains with known security vulnerabilities.

Usage

Package may be installed from PyPI via the typical methods (e.g. python3 -m pip install idna)

For typical usage, the encode and decode functions will take a domain name argument and perform a conversion to ASCII-compatible encoding (known as A-labels), or to Unicode strings (known as U-labels) respectively.

>>> import idna
>>> idna.encode('ドメイン.テスト')
b'xn--eckwd4c7c.xn--zckzah'
>>> print(idna.decode('xn--eckwd4c7c.xn--zckzah'))
ドメイン.テスト

Conversions can be applied at a per-label basis using the ulabel or alabel functions for specialized use cases.

Compatibility Mapping (UTS #46)

This library provides support for Unicode IDNA Compatibility Processing which normalizes input from different potential ways a user may input a domain prior to performing the IDNA conversion operations. This functionality, known as a mapping, is considered by the specification to be a local user-interface issue distinct from IDNA conversion functionality.

For example, "Königsgäßchen" is not a permissible label as capital letters are not allowed. UTS 46 will convert this into lower case prior to applying the IDNA conversion.

>>> import idna
>>> idna.encode('Königsgäßchen')
...
idna.core.InvalidCodepoint: Codepoint U+004B at position 1 of 'Königsgäßchen' not allowed
>>> idna.encode('Königsgäßchen', uts46=True)
b'xn--knigsgchen-b4a3dun'
>>> idna.decode('xn--knigsgchen-b4a3dun')
'königsgäßchen'

Exceptions

All errors raised during conversion derive from the idna.IDNAError base class. The more specific exceptions are:

  • idna.IDNABidiError — raised when a label contains an illegal combination of left-to-right and right-to-left characters.
  • idna.InvalidCodepoint — raised when a label contains a codepoint that is INVALID for IDNA.
  • idna.InvalidCodepointContext — raised when a CONTEXTO or CONTEXTJ codepoint appears in a position whose contextual requirements are not satisfied.

Command-line tool

The package supports command-line usage to convert domain names between their Unicode and ASCII-compatible forms. It can be run either as a module (python3 -m idna) or, once installed (such as with uv tool or pipx), via the idna script:

$ uv tool install idna
$ idna xn--e1afmkfd.xn--p1ai
пример.рф
$ idna пример.рф
xn--e1afmkfd.xn--p1ai

With no mode flag the direction is chosen automatically: inputs containing an xn-- label are decoded, anything else is encoded. Pass -e/--encode or -d/--decode to force a specific direction.

Multiple domains may be supplied at once, either as positional arguments or by piping one domain per line on standard input. When more than one domain is supplied without explicitly asking to encode or decode, the direction is picked from the first input and that mode is applied to every remaining input. Use -e/--encode or -d/--decode to override the heuristic if the first input is ambiguous.

UTS #46 mapping is applied by default, which lets the tool accept inputs that aren't strictly valid IDNA 2008 by normalising them first:

$ idna ΠΑΡΆΔΕΙΓΜΑ.ΕΛ
xn--hxajbheg2az3al.xn--qxam

Pass --strict to disable UTS #46 and apply IDNA 2008 rules verbatim; the same input will then be rejected.

Conversion failures are reported on stderr together with the offending input; processing continues with the remaining domains and the tool exits with a non-zero status if any conversion failed.

Additional Notes

  • Version support. This library supports Python 3.9 and higher. As this library serves as a low-level toolkit for a variety of applications, we strive to support all versions of Python that are not beyond end-of-life.

  • Emoji. It is an occasional request to support emoji domains in this library. Encoding of symbols like emoji is expressly prohibited by the IDNA technical standard, and emoji domains are broadly phased out across the domain industry due to associated security risks.

  • Regenerating lookup tables. The IDNA and UTS 46 functionality relies upon pre-calculated lookup tables, generated using the idna-data script in tools/.

Download files

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

Source Distribution

idna-3.17.tar.gz (196.0 kB view details)

Uploaded Source

Built Distribution

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

idna-3.17-py3-none-any.whl (65.3 kB view details)

Uploaded Python 3

File details

Details for the file idna-3.17.tar.gz.

File metadata

  • Download URL: idna-3.17.tar.gz
  • Upload date:
  • Size: 196.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for idna-3.17.tar.gz
Algorithm Hash digest
SHA256 5eb0cb53bc467c12eadcf6de83163ad8527cec9416f44b9b61b19caedad2b87f
MD5 229c4fbed2e69a0f41112b29452fece3
BLAKE2b-256 b92899c51f664567218d824af024c0251650fb27e4ca066df188dab0769c5b91

See more details on using hashes here.

Provenance

The following attestation bundles were made for idna-3.17.tar.gz:

Publisher: deploy.yml on kjd/idna

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file idna-3.17-py3-none-any.whl.

File metadata

  • Download URL: idna-3.17-py3-none-any.whl
  • Upload date:
  • Size: 65.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for idna-3.17-py3-none-any.whl
Algorithm Hash digest
SHA256 466e48829084efe2548012b855df21540b96f2e20e51bd124c851536556a592c
MD5 dfa130e555253a76868e2dd3f1b873aa
BLAKE2b-256 dea7f76514cc40ad6234098ecdebda08732d75964776c51a42845b7da10649e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for idna-3.17-py3-none-any.whl:

Publisher: deploy.yml on kjd/idna

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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