File extensions for programming languages.
Project description
> programming-languages
File extensions for programming languages.
It's just a JSON file, so you can use it in any environment. Sourced from GitHub's Linguist project (defines all 500+ programming languages known to GitHub). Data is updated via script and released via new package version.
Installation
pip install programming-languages
Usage
import programming_languages
py_lang_data = programming_languages['Python']
print(py_lang_data['extensions']) # => ['.cgi', '.fcgi', '.gyp', ...]
Note: Most type checkers will falsely warn programming_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 programming_languages.items():
if file_ext in data['extensions']:
return lang
print(get_lang('.al')) # => 'AL'
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 programming_languages.items():
if file_ext in data['extensions']:
return lang
print(get_lang_from_path('main.rs')) # => 'Rust'
print(get_lang_from_path('script.kt')) # => 'Kotlin'
print(get_lang_from_path('data.avsc')) # => None (use data-languages pkg)
MIT License
Copyright © 2026 Adam Lui
Related
</> markup-languages - File extensions for markup languages.
## prose-languages - File extensions for prose languages.
{ } data-languages - File extensions for data languages.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file programming_languages-2.0.1.tar.gz.
File metadata
- Download URL: programming_languages-2.0.1.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78add7aa2270986e573fd22652ee8942f0400baa9e90b3ef81f0a8e454fb6303
|
|
| MD5 |
4b7f461c6ce2d26a28e7e9334e39eddd
|
|
| BLAKE2b-256 |
0681c4f67dd00489f76325464d7fdc45b25244d4441f0414dc5b690da54307db
|
File details
Details for the file programming_languages-2.0.1-py2.py3-none-any.whl.
File metadata
- Download URL: programming_languages-2.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e53f54c93ba247e65ea2884ca05dc200b1ff994625aeed04a2485173425bedca
|
|
| MD5 |
cc499448d92ce1c526ae1d4626b13b5c
|
|
| BLAKE2b-256 |
7374bfae0a2f4822294b87320938ca6981b6e72b2cfad7a77cb18f5b4259482c
|