python-iso639


Namepython-iso639 JSON
Version 2024.4.27 PyPI version JSON
download
home_pageNone
SummaryISO 639 language codes, names, and other associated information
upload_time2024-04-27 19:23:58
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseApache 2.0
keywords iso 639 language codes languages linguistics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # python-iso639

[![PyPI version](https://badge.fury.io/py/python-iso639.svg)](https://pypi.org/project/python-iso639/)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/python-iso639.svg)](https://pypi.org/project/python-iso639/)
[![PyPI downloads last month](https://img.shields.io/pypi/dm/python-iso639)](https://pypi.org/project/python-iso639/)
[![CircleCI Builds](https://circleci.com/gh/jacksonllee/iso639.svg?style=shield)](https://circleci.com/gh/jacksonllee/iso639)

`python-iso639` is a Python package for ISO 639 language codes, names, and
other associated information.

Current features:

* A representation of languages mapped across ISO 639-1, 639-2, and 639-3.
* Functionality to "guess" what a language is for a given
  unknown language code or name.

## Installation

```bash
pip install python-iso639
```

## Usage

`python-iso639` revolves around a `Language` class.
Instances of `Language` have attributes and methods that you will find useful.

Note that while the package name registered on PyPI is `python-iso639`,
the actual import name during runtime is `iso639`
(which means you should do `import iso639` in your Python code).

### Creating `Language` Instances

Create a `Language` instance by one of the methods.

#### `from_part3`, with an ISO 639-3 code

```python
>>> import iso639
>>> lang1 = iso639.Language.from_part3('fra')
>>> type(lang1)
<class 'iso639.language.Language'>
>>> lang1
Language(part3='fra', part2b='fre', part2t='fra', part1='fr', scope='I', type='L', name='French', comment=None, other_names=None, macrolanguage=None, retire_reason=None, retire_change_to=None, retire_remedy=None, retire_date=None)
```

#### From Another ISO 639 Code Set or a Reference Name

```python
>>> lang2 = iso639.Language.from_part2b('fre')  # ISO 639-2 (bibliographic)
>>> lang3 = iso639.Language.from_part2t('fra')  # ISO 639-2 (terminological)
>>> lang4 = iso639.Language.from_part1('fr')  # ISO 639-1
>>> lang5 = iso639.Language.from_name('French')  # ISO 639-3 reference language name
```

#### A `LanguageNotFoundError` is Raised for Invalid Inputs

```python
>>> iso639.Language.from_part3('Fra')  # The user input is case-sensitive!
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
LanguageNotFoundError: 'Fra' isn't an ISO language code or name
>>>
>>> iso639.Language.from_name("unknown language")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
LanguageNotFoundError: 'unknown language' isn't an ISO language code or name
```

### Accessing Attributes

```python
>>> lang1
Language(part3='fra', part2b='fre', part2t='fra', part1='fr', scope='I', type='L', name='French', comment=None, other_names=None, macrolanguage=None, retire_reason=None, retire_change_to=None, retire_remedy=None, retire_date=None)
>>> lang1.part3
'fra'
>>> lang1.name
'French'
```

### Comparison

```python
>>> lang1 == lang2 == lang3 == lang4 == lang5  # All are French
True
>>> lang6 = iso639.Language.from_part3('spa')  # Spanish
>>> lang1 == lang6  # French vs. Spanish
False
>>> 'French' == lang1.name == lang2.name == lang3.name == lang4.name == lang5.name
True
>>> lang6.name
'Spanish'
```

### Guess a Language: Classmethod `match`

You don't know which code set or name your input is from?
Use the `match` classmethod:

```python
>>> lang1 = iso639.Language.match('fra')
>>> lang2 = iso639.Language.match('fre')
>>> lang3 = iso639.Language.match('fr')
>>> lang4 = iso639.Language.match('French')
>>> lang1 == lang2 == lang3 == lang4
True
```

The classmethod `match` is particularly useful for consistently
accessing a specific attribute from unknown inputs, e.g., the ISO 639-3 code.

```python
>>> 'fra' == lang1.part3 == lang2.part3 == lang3.part3 == lang4.part3
True
```

If there's no match, a `LanguageNotFoundError` is raised,
which you may want to catch:

```python
>>> try:
...     lang = iso639.Language.match('not gonna find a match')
... except iso639.LanguageNotFoundError:
...     print("no match found!")
... 
no match found!
```

### Macrolanguages and Alternative Names

```python
>>> language = iso639.Language.match('yue')
>>> language.name
'Yue Chinese'  # also commonly known as Cantonese
>>> language.macrolanguage
'zho'  # Chinese
>>> language.other_names
[Name(print='Yue Chinese', inverted='Chinese, Yue')]
>>> for name in language.other_names:
...     print(f'{name.print} | {name.inverted}')
...
Yue Chinese | Chinese, Yue
```

### Retired Language Codes:

```python
>>> language = iso639.Language.match('bvs')
>>> language.part3
'bvs'
>>> language.name
'Belgian Sign Language'
>>> language.status
'R'  # (R)etired
>>> language.retire_reason
'S'  # (S)plit
>>> language.retire_change_to is None
True
>>> language.retire_remedy
'Split into Langue des signes de Belgique Francophone [sfb], and Vlaamse Gebarentaal [vgt]'
>>> language.retire_date
datetime.date(2007, 7, 18)
```

## Into the Weeds

### Attributes of a `Language` Instance

A `Language` instance has the following attributes:

| Attribute          | Data type       | Can it be `None`? | Description                                                                                                           |
|--------------------|-----------------|-------------------|-----------------------------------------------------------------------------------------------------------------------|
| `part3`            | `str`           | ✗                 | ISO 639-3 code                                                                                                        |
| `part2b`           | `str`           | ✓                 | ISO 639-2 code (bibliographic)                                                                                        |
| `part2t`           | `str`           | ✓                 | ISO 639-2 code (terminological)                                                                                       |
| `part1`            | `str`           | ✓                 | ISO 639-1 code                                                                                                        |
| `scope`            | `str`           | ✗                 | One of {(I)ndividual, (M)acrolanguage, (S)pecial}                                                                     |
| `type`             | `str`           | ✓                 | One of {(A)ncient, (C)onstructed, (E)xtinct, (H)istorical, (L)iving, (S)pecial} [1]                                   |
| `status`           | `str`           | ✗                 | One of {(A)ctive, (R)etired}, describing the ISO 639-3 code                                                           |
| `name`             | `str`           | ✗                 | Reference language name in ISO 639-3                                                                                  |
| `comment`          | `str`           | ✓                 | Comment from ISO 639-3                                                                                                |
| `other_names`      | `List[Name]`    | ✓                 | Other print and inverted names [2]                                                                                    |
| `macrolanguage`    | `str`           | ✓                 | Macrolanguage                                                                                                         |
| `retire_reason`    | `str`           | ✓                 | Retirement reason, one of {(C)hange, (D)uplicate, (N)on-existent, (S)plit, (M)erge}                                   |
| `retire_change_to` | `str`           | ✓                 | ISO 639-3 code to which this language can be changed, if retirement reason is one of {(C)hange, (D)uplicate, (M)erge} |
| `retire_remedy`    | `str`           | ✓                 | Instructions for updating this retired language code                                                                  |
| `retire_date`      | `datetime.date` | ✓                 | The date the retirement became effective                                                                              |

[1] If the ISO 639-3 code is retired, then the `type` attribute is `None`,
    because its value is not clearly discernible from the SIL data source.

[2] A `Name` instance has the attributes `print` and `inverted`,
    for the print name and inverted name, respectively.
    If reference name, print name, and inverted name are all the same, then
    that particular (print name, inverted name) pair is excluded from
    the `other_names` attribute.
    For example, for Spanish (ISO 639-3: spa), one (print name, inverted name)
    pair is (Spanish, Spanish) from the SIL data source, but this pair is
    excluded from its list of `other_names`.

### How `Language.match` Matches the Language

At a high level, `Language.match` assumes the input is more likely to be
a language code rather than a language name.
Beyond that, the precise order in matching is as follows:

* ISO 639-3 codes (among the active codes)
* ISO 639-2 (bibliographic) codes
* ISO 639-2 (terminological) codes
* ISO 639-1 codes
* ISO 639-3 codes (among the retired codes)
* ISO 639-3 reference language names
* ISO 639-3 alternative language names (the "print" ones)
* ISO 639-3 alternative language names (the "inverted" ones)

Only exact matching is done (there's no fuzzy string matching of any sort).
As soon as a match is found, `Language.match` returns a `Language` instance.
If there isn't a match, a `LanguageNotFoundError` is raised.

### `Language` is a dataclass

The `Language` class is a dataclass.
All functionality of
[dataclasses](https://docs.python.org/3/library/dataclasses.html)
applies to `Language` and its instances,
e.g., [`dataclasses.asdict`](https://docs.python.org/3/library/dataclasses.html#dataclasses.asdict):

```python
>>> import dataclasses, iso639
>>> language = iso639.Language.match('fra')
>>> dataclasses.asdict(language)
{'part3': 'fra', 'part2b': 'fre', 'part2t': 'fra', 'part1': 'fr', 'scope': 'I', 'type': 'L', 'status': 'A', 'name': 'French', 'comment': None, 'other_names': None, 'macrolanguage': None, 'retire_reason': None, 'retire_change_to': None, 'retire_remedy': None, 'retire_date': None}
```

### Constants

* `DATA_LAST_UPDATED`: The release date of the included language code data from SIL

    ```python
    >>> import iso639
    >>> iso639.DATA_LAST_UPDATED
    datetime.date(2024, 4, 15)
    ```

* `ALL_LANGUAGES`: The list of all `Language` objects based on the included language code data

    ```python
    >>> import iso639
    >>> type(iso639.ALL_LANGUAGES)
    <class 'list'>
    >>> len(iso639.ALL_LANGUAGES)
    7920
    >>> iso639.ALL_LANGUAGES[0]
    Language(part3='aaa', scope='I', type='L', status='A', name='Ghotuo', ...)
    ```

## Links

* Author: [Jackson L. Lee](https://jacksonllee.com)
* Source code: https://github.com/jacksonllee/iso639

## License and Data Source

The `python-iso639` code is released under an Apache 2.0 license.
Please see [LICENSE.txt](https://github.com/jacksonllee/iso639/blob/main/LICENSE.txt)
for details.

The data source that backs this package is the
[language code tables published by SIL](https://iso639-3.sil.org/code_tables/download_tables).
Note that SIL resources have their [terms of use](https://www.sil.org/terms-use).
For exactly how the data is included in the package,
see the script at [`scripts/create_languages_db.py`](scripts/create_languages_db.py).

## Why Another ISO 639 Package?

Both packages [iso639](https://pypi.org/project/iso639/)
and [iso-639](https://pypi.org/project/iso-639/) exist on PyPI.
However, as of this writing (May 2022), they were last updated in 2016 and don't seem to be maintained anymore
for updating the language codes.
[pycountry](https://pypi.org/project/pycountry/) is a great package,
but what if you want a more lightweight package with just the language codes only and not the other stuff? :-)

If you ever notice that the upstream ISO 639-3 tables from SIL have been updated
and yet this package isn't using the latest data,
please ping me by [opening a GitHub issue](https://github.com/jacksonllee/iso639/issues).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "python-iso639",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "ISO 639, language codes, languages, linguistics",
    "author": null,
    "author_email": "\"Jackson L. Lee\" <jacksonlunlee@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/ff/d9/fbab4ccc1a712b989b28c1c964c94096aa4b44770245a49439532e787416/python_iso639-2024.4.27.tar.gz",
    "platform": null,
    "description": "# python-iso639\n\n[![PyPI version](https://badge.fury.io/py/python-iso639.svg)](https://pypi.org/project/python-iso639/)\n[![Supported Python versions](https://img.shields.io/pypi/pyversions/python-iso639.svg)](https://pypi.org/project/python-iso639/)\n[![PyPI downloads last month](https://img.shields.io/pypi/dm/python-iso639)](https://pypi.org/project/python-iso639/)\n[![CircleCI Builds](https://circleci.com/gh/jacksonllee/iso639.svg?style=shield)](https://circleci.com/gh/jacksonllee/iso639)\n\n`python-iso639` is a Python package for ISO 639 language codes, names, and\nother associated information.\n\nCurrent features:\n\n* A representation of languages mapped across ISO 639-1, 639-2, and 639-3.\n* Functionality to \"guess\" what a language is for a given\n  unknown language code or name.\n\n## Installation\n\n```bash\npip install python-iso639\n```\n\n## Usage\n\n`python-iso639` revolves around a `Language` class.\nInstances of `Language` have attributes and methods that you will find useful.\n\nNote that while the package name registered on PyPI is `python-iso639`,\nthe actual import name during runtime is `iso639`\n(which means you should do `import iso639` in your Python code).\n\n### Creating `Language` Instances\n\nCreate a `Language` instance by one of the methods.\n\n#### `from_part3`, with an ISO 639-3 code\n\n```python\n>>> import iso639\n>>> lang1 = iso639.Language.from_part3('fra')\n>>> type(lang1)\n<class 'iso639.language.Language'>\n>>> lang1\nLanguage(part3='fra', part2b='fre', part2t='fra', part1='fr', scope='I', type='L', name='French', comment=None, other_names=None, macrolanguage=None, retire_reason=None, retire_change_to=None, retire_remedy=None, retire_date=None)\n```\n\n#### From Another ISO 639 Code Set or a Reference Name\n\n```python\n>>> lang2 = iso639.Language.from_part2b('fre')  # ISO 639-2 (bibliographic)\n>>> lang3 = iso639.Language.from_part2t('fra')  # ISO 639-2 (terminological)\n>>> lang4 = iso639.Language.from_part1('fr')  # ISO 639-1\n>>> lang5 = iso639.Language.from_name('French')  # ISO 639-3 reference language name\n```\n\n#### A `LanguageNotFoundError` is Raised for Invalid Inputs\n\n```python\n>>> iso639.Language.from_part3('Fra')  # The user input is case-sensitive!\nTraceback (most recent call last):\n  File \"<stdin>\", line 1, in <module>\nLanguageNotFoundError: 'Fra' isn't an ISO language code or name\n>>>\n>>> iso639.Language.from_name(\"unknown language\")\nTraceback (most recent call last):\n  File \"<stdin>\", line 1, in <module>\nLanguageNotFoundError: 'unknown language' isn't an ISO language code or name\n```\n\n### Accessing Attributes\n\n```python\n>>> lang1\nLanguage(part3='fra', part2b='fre', part2t='fra', part1='fr', scope='I', type='L', name='French', comment=None, other_names=None, macrolanguage=None, retire_reason=None, retire_change_to=None, retire_remedy=None, retire_date=None)\n>>> lang1.part3\n'fra'\n>>> lang1.name\n'French'\n```\n\n### Comparison\n\n```python\n>>> lang1 == lang2 == lang3 == lang4 == lang5  # All are French\nTrue\n>>> lang6 = iso639.Language.from_part3('spa')  # Spanish\n>>> lang1 == lang6  # French vs. Spanish\nFalse\n>>> 'French' == lang1.name == lang2.name == lang3.name == lang4.name == lang5.name\nTrue\n>>> lang6.name\n'Spanish'\n```\n\n### Guess a Language: Classmethod `match`\n\nYou don't know which code set or name your input is from?\nUse the `match` classmethod:\n\n```python\n>>> lang1 = iso639.Language.match('fra')\n>>> lang2 = iso639.Language.match('fre')\n>>> lang3 = iso639.Language.match('fr')\n>>> lang4 = iso639.Language.match('French')\n>>> lang1 == lang2 == lang3 == lang4\nTrue\n```\n\nThe classmethod `match` is particularly useful for consistently\naccessing a specific attribute from unknown inputs, e.g., the ISO 639-3 code.\n\n```python\n>>> 'fra' == lang1.part3 == lang2.part3 == lang3.part3 == lang4.part3\nTrue\n```\n\nIf there's no match, a `LanguageNotFoundError` is raised,\nwhich you may want to catch:\n\n```python\n>>> try:\n...     lang = iso639.Language.match('not gonna find a match')\n... except iso639.LanguageNotFoundError:\n...     print(\"no match found!\")\n... \nno match found!\n```\n\n### Macrolanguages and Alternative Names\n\n```python\n>>> language = iso639.Language.match('yue')\n>>> language.name\n'Yue Chinese'  # also commonly known as Cantonese\n>>> language.macrolanguage\n'zho'  # Chinese\n>>> language.other_names\n[Name(print='Yue Chinese', inverted='Chinese, Yue')]\n>>> for name in language.other_names:\n...     print(f'{name.print} | {name.inverted}')\n...\nYue Chinese | Chinese, Yue\n```\n\n### Retired Language Codes:\n\n```python\n>>> language = iso639.Language.match('bvs')\n>>> language.part3\n'bvs'\n>>> language.name\n'Belgian Sign Language'\n>>> language.status\n'R'  # (R)etired\n>>> language.retire_reason\n'S'  # (S)plit\n>>> language.retire_change_to is None\nTrue\n>>> language.retire_remedy\n'Split into Langue des signes de Belgique Francophone [sfb], and Vlaamse Gebarentaal [vgt]'\n>>> language.retire_date\ndatetime.date(2007, 7, 18)\n```\n\n## Into the Weeds\n\n### Attributes of a `Language` Instance\n\nA `Language` instance has the following attributes:\n\n| Attribute          | Data type       | Can it be `None`? | Description                                                                                                           |\n|--------------------|-----------------|-------------------|-----------------------------------------------------------------------------------------------------------------------|\n| `part3`            | `str`           | \u2717                 | ISO 639-3 code                                                                                                        |\n| `part2b`           | `str`           | \u2713                 | ISO 639-2 code (bibliographic)                                                                                        |\n| `part2t`           | `str`           | \u2713                 | ISO 639-2 code (terminological)                                                                                       |\n| `part1`            | `str`           | \u2713                 | ISO 639-1 code                                                                                                        |\n| `scope`            | `str`           | \u2717                 | One of {(I)ndividual, (M)acrolanguage, (S)pecial}                                                                     |\n| `type`             | `str`           | \u2713                 | One of {(A)ncient, (C)onstructed, (E)xtinct, (H)istorical, (L)iving, (S)pecial} [1]                                   |\n| `status`           | `str`           | \u2717                 | One of {(A)ctive, (R)etired}, describing the ISO 639-3 code                                                           |\n| `name`             | `str`           | \u2717                 | Reference language name in ISO 639-3                                                                                  |\n| `comment`          | `str`           | \u2713                 | Comment from ISO 639-3                                                                                                |\n| `other_names`      | `List[Name]`    | \u2713                 | Other print and inverted names [2]                                                                                    |\n| `macrolanguage`    | `str`           | \u2713                 | Macrolanguage                                                                                                         |\n| `retire_reason`    | `str`           | \u2713                 | Retirement reason, one of {(C)hange, (D)uplicate, (N)on-existent, (S)plit, (M)erge}                                   |\n| `retire_change_to` | `str`           | \u2713                 | ISO 639-3 code to which this language can be changed, if retirement reason is one of {(C)hange, (D)uplicate, (M)erge} |\n| `retire_remedy`    | `str`           | \u2713                 | Instructions for updating this retired language code                                                                  |\n| `retire_date`      | `datetime.date` | \u2713                 | The date the retirement became effective                                                                              |\n\n[1] If the ISO 639-3 code is retired, then the `type` attribute is `None`,\n    because its value is not clearly discernible from the SIL data source.\n\n[2] A `Name` instance has the attributes `print` and `inverted`,\n    for the print name and inverted name, respectively.\n    If reference name, print name, and inverted name are all the same, then\n    that particular (print name, inverted name) pair is excluded from\n    the `other_names` attribute.\n    For example, for Spanish (ISO 639-3: spa), one (print name, inverted name)\n    pair is (Spanish, Spanish) from the SIL data source, but this pair is\n    excluded from its list of `other_names`.\n\n### How `Language.match` Matches the Language\n\nAt a high level, `Language.match` assumes the input is more likely to be\na language code rather than a language name.\nBeyond that, the precise order in matching is as follows:\n\n* ISO 639-3 codes (among the active codes)\n* ISO 639-2 (bibliographic) codes\n* ISO 639-2 (terminological) codes\n* ISO 639-1 codes\n* ISO 639-3 codes (among the retired codes)\n* ISO 639-3 reference language names\n* ISO 639-3 alternative language names (the \"print\" ones)\n* ISO 639-3 alternative language names (the \"inverted\" ones)\n\nOnly exact matching is done (there's no fuzzy string matching of any sort).\nAs soon as a match is found, `Language.match` returns a `Language` instance.\nIf there isn't a match, a `LanguageNotFoundError` is raised.\n\n### `Language` is a dataclass\n\nThe `Language` class is a dataclass.\nAll functionality of\n[dataclasses](https://docs.python.org/3/library/dataclasses.html)\napplies to `Language` and its instances,\ne.g., [`dataclasses.asdict`](https://docs.python.org/3/library/dataclasses.html#dataclasses.asdict):\n\n```python\n>>> import dataclasses, iso639\n>>> language = iso639.Language.match('fra')\n>>> dataclasses.asdict(language)\n{'part3': 'fra', 'part2b': 'fre', 'part2t': 'fra', 'part1': 'fr', 'scope': 'I', 'type': 'L', 'status': 'A', 'name': 'French', 'comment': None, 'other_names': None, 'macrolanguage': None, 'retire_reason': None, 'retire_change_to': None, 'retire_remedy': None, 'retire_date': None}\n```\n\n### Constants\n\n* `DATA_LAST_UPDATED`: The release date of the included language code data from SIL\n\n    ```python\n    >>> import iso639\n    >>> iso639.DATA_LAST_UPDATED\n    datetime.date(2024, 4, 15)\n    ```\n\n* `ALL_LANGUAGES`: The list of all `Language` objects based on the included language code data\n\n    ```python\n    >>> import iso639\n    >>> type(iso639.ALL_LANGUAGES)\n    <class 'list'>\n    >>> len(iso639.ALL_LANGUAGES)\n    7920\n    >>> iso639.ALL_LANGUAGES[0]\n    Language(part3='aaa', scope='I', type='L', status='A', name='Ghotuo', ...)\n    ```\n\n## Links\n\n* Author: [Jackson L. Lee](https://jacksonllee.com)\n* Source code: https://github.com/jacksonllee/iso639\n\n## License and Data Source\n\nThe `python-iso639` code is released under an Apache 2.0 license.\nPlease see [LICENSE.txt](https://github.com/jacksonllee/iso639/blob/main/LICENSE.txt)\nfor details.\n\nThe data source that backs this package is the\n[language code tables published by SIL](https://iso639-3.sil.org/code_tables/download_tables).\nNote that SIL resources have their [terms of use](https://www.sil.org/terms-use).\nFor exactly how the data is included in the package,\nsee the script at [`scripts/create_languages_db.py`](scripts/create_languages_db.py).\n\n## Why Another ISO 639 Package?\n\nBoth packages [iso639](https://pypi.org/project/iso639/)\nand [iso-639](https://pypi.org/project/iso-639/) exist on PyPI.\nHowever, as of this writing (May 2022), they were last updated in 2016 and don't seem to be maintained anymore\nfor updating the language codes.\n[pycountry](https://pypi.org/project/pycountry/) is a great package,\nbut what if you want a more lightweight package with just the language codes only and not the other stuff? :-)\n\nIf you ever notice that the upstream ISO 639-3 tables from SIL have been updated\nand yet this package isn't using the latest data,\nplease ping me by [opening a GitHub issue](https://github.com/jacksonllee/iso639/issues).\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "ISO 639 language codes, names, and other associated information",
    "version": "2024.4.27",
    "project_urls": {
        "Source": "https://github.com/jacksonllee/iso639"
    },
    "split_keywords": [
        "iso 639",
        " language codes",
        " languages",
        " linguistics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01085e649cf18dec750d498c53c6c8eb1d9790752ebd50fa7f7e69cc0c277cfe",
                "md5": "301ed9f7cd033a1c9e8db1267b313116",
                "sha256": "27526a84cebc4c4d53fea9d1ebbc7209c8d279bebaa343e6765a1fc8780565ab"
            },
            "downloads": -1,
            "filename": "python_iso639-2024.4.27-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "301ed9f7cd033a1c9e8db1267b313116",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 274742,
            "upload_time": "2024-04-27T19:23:39",
            "upload_time_iso_8601": "2024-04-27T19:23:39.375756Z",
            "url": "https://files.pythonhosted.org/packages/01/08/5e649cf18dec750d498c53c6c8eb1d9790752ebd50fa7f7e69cc0c277cfe/python_iso639-2024.4.27-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffd9fbab4ccc1a712b989b28c1c964c94096aa4b44770245a49439532e787416",
                "md5": "27233d7886065805b5e4b87a7ace2d13",
                "sha256": "97e63b5603e085c6a56a12a95740010e75d9134e0aab767e0978b53fd8824f13"
            },
            "downloads": -1,
            "filename": "python_iso639-2024.4.27.tar.gz",
            "has_sig": false,
            "md5_digest": "27233d7886065805b5e4b87a7ace2d13",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 279163,
            "upload_time": "2024-04-27T19:23:58",
            "upload_time_iso_8601": "2024-04-27T19:23:58.421979Z",
            "url": "https://files.pythonhosted.org/packages/ff/d9/fbab4ccc1a712b989b28c1c964c94096aa4b44770245a49439532e787416/python_iso639-2024.4.27.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-27 19:23:58",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jacksonllee",
    "github_project": "iso639",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "circle": true,
    "lcname": "python-iso639"
}
        
Elapsed time: 0.29754s