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.1.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.1-py2.py3-none-any.whl (7.6 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

  • Download URL: data_languages-1.0.1.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.1.tar.gz
Algorithm Hash digest
SHA256 448411a1f3fee178c7fdb0fcb99cbc7156cd7c9f35078e21b5ca34674219de58
MD5 b7074a7930129b3323db5a63122d6ba5
BLAKE2b-256 74950b502044ad14b084c7d5d3661a22f0f61c2c2e421048683f205ef104f4e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for data_languages-1.0.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 0e4f371a4ae06462dc0b4b3b08528f0cd930679a799b7224ac0f96796422d8eb
MD5 6dbc98d32e512a8ecd8bded0949a4af1
BLAKE2b-256 c37e6caaf7e8f058b260b2a2a47834bd6cb326f8fe9510d405fd1f619193d9a0

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