Extracts FTL files from a directory and outputs them to a directory
Project description
FTL-Extract
Description
FTL-Extract is a Python package that extracts Fluent keys from .py files and generates a .ftl file with extracted keys.
Installation
Use the package manager pip to install FTL-Extract.
$ pip install FTL-Extract
Or use modern tool like UV to install FTL-Extract.
$ uv add --dev FTL-Extract
Usage
First of all, you should create locales directory in your project.
$ mkdir project_path/locales
Then, you can use the following command to extract keys from your code.
$ ftl_extract project_path/code_path project_path/locales
By default, FTL-Extract will create a directory named en and put all keys into _default.ftl file.
In some cases, you may want to extract keys to specific .ftl files.
So, there is new keyword argument _path in i18n.get and i18n.<key>.
# Before
i18n.get("key-1", arg1="value1", arg2="value2")
# After
i18n.get("key-1", arg1="value1", arg2="value2", _path="dir/ftl_file.ftl")
# Also
i18n.key_1(arg1="value1", arg2="value2", _path="dir/ftl_file.ftl")
# Or
i18n.some.key_1(arg1="value1", arg2="value2", _path="dir/ftl_file.ftl")
💁♂️ Explanation of the ftl-extractor command
$ ftl_extract project_path/code_path project_path/locales
project_path/code_path- path to the project directory where the code is located.project_path/locales- path to the project directory where the.ftlfiles will be located.
📚 Additional arguments
-lor--language- add a new language to the project.-kor--i18n_keys- add additional i18n keys to the extractor.--ignore-attributes- ignore specific attributes of thei18n.*likei18n.set_locale.-aor--expand-ignore-attributes- add more attributes to ignore to the default list.--ignore-kwargs- ignore specific kwargs of the i18n_keys likewhen=...inaiogram_dialog.I18nFormat(..., when=...).--comment-junks- comments errored translations in the.ftlfile.--default-ftl-file- specify the default.ftlfile name.--comment-keys-mode- specify the comment keys mode. It will comment keys that are not used in the code or print warnings about them. Available modes:comment,warn.--dry-run- run the command without making any changes to the files.-vor--verbose- print additional information about the process.
FAQ
❓ - How to add more languages to the project ?
# Here we add 3 languages: English, Ukrainian and Polish
$ ftl_extract project_path/code_path project_path/locales -l en -l uk -l pl
❓ - How to detect another i18n keys like LazyProxy or L ?
# Here we extract ftl keys from i18n-keys like `i18n`, `LF`, `LazyProxy` and `L`
$ ftl_extract project_path/code_path project_path/locales -k i18n -k LF -k LazyProxy -k L
How I use FTL-Extract in most of my projects
$ ftl_extract \
'./app/bot' \
'./app/bot/locales' \
-l 'en' \
-l 'uk' \
-k 'i18n' \
-k 'L' \
-k 'LF' \
-k 'LazyProxy' \
-a 'core' \
--comment-junks \
--comment-keys-mode 'warn' \
--verbose
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Project details
Release history Release notifications | RSS feed
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 ftl_extract-0.7.0.tar.gz.
File metadata
- Download URL: ftl_extract-0.7.0.tar.gz
- Upload date:
- Size: 15.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.6.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9a24745e0a469e7b3c50abd00892e41af22e996272efd019ef25f703d33d709
|
|
| MD5 |
f660dd68a43e43f57006b433f927c1ab
|
|
| BLAKE2b-256 |
32a939052851f770607e705afd86496a2f5f1e010a54e9e57a4e0d2d2d2e629b
|
File details
Details for the file ftl_extract-0.7.0-py3-none-any.whl.
File metadata
- Download URL: ftl_extract-0.7.0-py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.6.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04859b1e0dc786c1cb02c3af216017543553dc4397feb6b417947c1b99d781db
|
|
| MD5 |
9d7ae8772e92bda677ca87fb36df667d
|
|
| BLAKE2b-256 |
dc34682827c0ae3a8de6b9f5d100edf346b8080e8e25031d0b98cf61ff51d084
|