├── .bumpversion.cfg ├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── languagecodes ├── __init__.py ├── generate.py ├── iso-639-3.tab ├── iso639.py ├── py.typed ├── synonyms.py └── util.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_codes.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/README.md -------------------------------------------------------------------------------- /languagecodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/languagecodes/__init__.py -------------------------------------------------------------------------------- /languagecodes/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/languagecodes/generate.py -------------------------------------------------------------------------------- /languagecodes/iso-639-3.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/languagecodes/iso-639-3.tab -------------------------------------------------------------------------------- /languagecodes/iso639.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/languagecodes/iso639.py -------------------------------------------------------------------------------- /languagecodes/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /languagecodes/synonyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/languagecodes/synonyms.py -------------------------------------------------------------------------------- /languagecodes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/languagecodes/util.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/languagecodes/HEAD/tests/test_codes.py --------------------------------------------------------------------------------