Skip to main content

Parser and validator for language codes (bcp47). Also exposes the IANA language code database

Project description

python-bcp47

A validating parser for bcp47 language codes

Data taken from IANA http://www.iana.org/assignments/language-subtag-registry/language-subtag-registry

bcp47 spec https://tools.ietf.org/html/bcp47

useful reading: https://www.w3.org/International/articles/language-tags/index.en

extension and private-use tag types are not currently supported

Python example

You can read languages, extlangs, scripts, variants, regions, grandfathereds, and redundant language tag parts from dicts on the bcp47 object.

They return OrderedDicts

>>> from bcp47 import bcp47

>>> list(bcp47["languages"].items())[:2]
[('aa', {'Subtag': 'aa', 'Description': ['Afar'], 'Added': '2005-10-16'}), ('ab', {'Subtag': 'ab', 'Description': ['Abkhazian'], 'Added': '2005-10-16', 'Suppress-Script': 'Cyrl'})]

>>>  list(bcp47["regions"].items())[:2]
[('AA', {'Subtag': 'AA', 'Description': ['Private use'], 'Added': '2005-10-16'}), ('AC', {'Subtag': 'AC', 'Description': ['Ascension Island'], 'Added': '2009-07-29'})]
`

You can create a language code tag as follows

>>> tag = bcp47(language="en", region="GB")
>>> tag
<bcp47.code.BCP47Code 'en-GB' />

>>> tag.language
'en'
>>> tag.region
'GB'

You can also use a string or list of tag parts

>>> bcp47("en-GB")
<bcp47.code.BCP47Code 'en-GB' />

>>> bcp47("en", "GB")
<bcp47.code.BCP47Code 'en-GB' />

Creating a tag with invalid or unrecognized parameters raises an exception

>>> tag = bcp47(language="NOTALANGUAGE", region="GB")
Traceback (most recent call last):
...
Exception: Language 'NOTALANGUAGE' not recognized

>>> tag = bcp47("en-NOTAREGION")
Traceback (most recent call last):
...
Exception: Unrecognized tag part 'NOTAREGION'


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

python-bcp47-0.0.2.tar.gz (101.6 kB view details)

Uploaded Source

Built Distribution

python_bcp47-0.0.2-py3-none-any.whl (105.8 kB view details)

Uploaded Python 3

File details

Details for the file python-bcp47-0.0.2.tar.gz.

File metadata

  • Download URL: python-bcp47-0.0.2.tar.gz
  • Upload date:
  • Size: 101.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for python-bcp47-0.0.2.tar.gz
Algorithm Hash digest
SHA256 cc147f41fdcc5e20429f45bf06932c90e496ea86b8a2704f8537b388ff1dcf02
MD5 e7a0ce8bef533c6d59cf80e8bb72ddfb
BLAKE2b-256 7ab1abdc587e0d9dc8bef4dbf5615bbf15dabb93b3a1484095ead2bc19d49f8c

See more details on using hashes here.

File details

Details for the file python_bcp47-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: python_bcp47-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 105.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for python_bcp47-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 33915af4933e19d7bad3f92bcc2e73190da4c963fb3cb8b41899963b0c6ee2e4
MD5 bb1fc3c86d71dd6eb4fd4dff68901b8c
BLAKE2b-256 9680c555595aa425816d534a863ec9921ca103fb49da1b8c45c92b624dabdf93

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