language-data/scripts/get-lang-data-path.py
2025-10-21 13:40:13 +02:00

11 lines
247 B
Python
Executable file

#! /usr/bin/env python3
# Copyright © Michal Čihař <michal@weblate.org>
#
# SPDX-License-Identifier: MIT
from importlib.resources import as_file, files
ref = files("translate") / "lang" / "data.py"
with as_file(ref) as path:
print(path)