Metadata-Version: 2.1
Name: languagecodes
Version: 1.1.0
Summary: A library that normalises language codes
Home-page: http://github.com/alephdata/languagecodes
Author: Friedrich Lindenberg
Author-email: friedrich@pudo.org
License: MIT
Description: # languagecodes
        
        ![package](https://github.com/alephdata/languagecodes/workflows/package/badge.svg)
        
        This library helps to normalise the ISO 639 codes used to describe languages from
        two-letter codes to three letters, and vice versa.
        
        ```python
        import languagecodes
        
        assert 'eng' == languagecodes.iso_639_alpha3('en')
        assert 'eng' == languagecodes.iso_639_alpha3('ENG ')
        assert 'en' == languagecodes.iso_639_alpha2('ENG ')
        ```
        
        You can install the library from the Python package index:
        
        ```bash
        pip install languagecodes
        ```
        
        Uses data from: https://iso639-3.sil.org/
        See also: https://www.loc.gov/standards/iso639-2/php/code_list.php
        
Keywords: names languages iso
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
