Skip to main content

File extensions for data languages.

Project description

> data-languages

File extensions for data languages.

It's just a JSON file, so you can use it in any environment. Sourced from GitHub's Linguist project (defines all 145 data languages known to GitHub). Data is updated via script and released via new package version.

Installation

pip install data-languages

Usage

import data_languages

json_lang_data = data_languages['JSON']

print(json_lang_data['extensions']) # => ['.4DForm', '.4DProject', '.avsc', ...]

Note: Most type checkers will falsely warn data_languages is not subscriptable because they are incapable of analyzing runtime behavior (where the module is replaced w/ a dictionary for cleaner, direct access). You can safely suppress such warnings using # type: ignore.


Examples

Get language(s) from an extension:

def get_lang(file_ext):
    lang_matches = [
        lang for lang, data in data_languages.items()
            if file_ext in data['extensions']
    ]
    return lang_matches[0] if len(lang_matches) == 1 else lang_matches

print(get_lang('.ical')) # => iCalendar

Get language(s) from a file path:

def get_lang_from_path(filepath):
    from pathlib import Path
    file_ext = Path(filepath).suffix
    lang_matches = [
        lang for lang, data in data_languages.items()
            if file_ext in data['extensions']
    ]
    return lang_matches[0] if len(matches) == 1 else lang_matches

print(get_lang_from_path('steam.vdf')) # => Valve Data Format
print(get_lang_from_path('Sublime.sublime-snippet')) # => XML
print(get_lang_from_path('README.md')) # => [] (use prose-languages pkg)

MIT License

Copyright © 2026 Adam Lui


Related

</> markup-languages - File extensions for markup languages.
🇨🇳 non-latin-locales - ISO 639-1 (2-letter) codes for non-Latin locales.
#! programming-languages - File extensions for programming languages.

More Python utilities / Discuss / Report bug / Report vulnerability / Back to top ↑

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

data_languages-1.1.0.tar.gz (9.5 kB view details)

Uploaded Source

Built Distribution

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

data_languages-1.1.0-py2.py3-none-any.whl (7.7 kB view details)

Uploaded Python 2Python 3

File details

Details for the file data_languages-1.1.0.tar.gz.

File metadata

  • Download URL: data_languages-1.1.0.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for data_languages-1.1.0.tar.gz
Algorithm Hash digest
SHA256 86a08057834cccef4923b82b51c522f1f33bda4182da2dc80a002ca194c1db73
MD5 458f6360195e2cef55ebcd2365061f15
BLAKE2b-256 f62af18f709c4b2a4cabd36cab06bf774df76eb46d090bdb2b0f0e04069730f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for data_languages-1.1.0.tar.gz:

Publisher: publish-to-pypi-on-new-tag.yml on adamlui/python-utils

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

File details

Details for the file data_languages-1.1.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for data_languages-1.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 d8379e2e5fe6b799e4ce814efadbc4640979fd7626dff0d9e5c2f94a664cef2c
MD5 f51e5033f009ec19f511c742cd680d48
BLAKE2b-256 105b2aff5ad965de6231ad1f53fe26e477a1a202cb99ec5ccd0eba2dc7986e29

See more details on using hashes here.

Provenance

The following attestation bundles were made for data_languages-1.1.0-py2.py3-none-any.whl:

Publisher: publish-to-pypi-on-new-tag.yml on adamlui/python-utils

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