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 from an extension:

def get_lang(file_ext):
    for lang, data in data_languages.items():
        if file_ext in data['extensions']:
            return lang

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

Get language from a file path:

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

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')) # => None (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 / 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.0.2.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.0.2-py2.py3-none-any.whl (7.6 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

  • Download URL: data_languages-1.0.2.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.2

File hashes

Hashes for data_languages-1.0.2.tar.gz
Algorithm Hash digest
SHA256 7258349d44bdf53ee607130fdcf6a52322693e99b04391e95eaa8cbb67fd958f
MD5 4a4570d33f089b079a4488405980b6e2
BLAKE2b-256 0213b043b716295175276bc0b724c9eec0ed214292e9c2febcd3ccd41d34d28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for data_languages-1.0.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 847e1abea9744b5ec9ddbd56205e77e2c974f56b3fb99212564c39b127fd3e3e
MD5 6f74d5e754dd3784093b2a011d95a1e9
BLAKE2b-256 6182acd4e374b8eebb8336013622ecca1bad3e80eec88ffe89832c5f40b4c62b

See more details on using hashes here.

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