Simply remove JSON keys via CLI command.
Project description
> remove-json-keys
Simply remove JSON keys via CLI command.
Installation
pip install remove-json-keys
Usage
Run the CLI:
remove-json-keys [options] # or remove-json
If no options are passed, the CLI will:
- Prompt for keys to delete
- Auto-discover closest child
json_dir - Delete keys from found JSON files
Note: Key/values can span multiple lines and have any amount of whitespace between symbols.
Options
Options can be set by using command-line arguments:
| Option | Description | Example |
|---|---|---|
-d, --json-dir |
Name of the folder containing JSON files (default: _locales) |
--json-dir=data |
-k, --keys |
Comma-separated list of keys to remove | --keys=app_DESC,err_NOT_FOUND |
--config |
Use custom config file | --config=path/to/file |
init, -i, --init |
Create .remove-json.config.json5 in project root to store default settings | |
-n, --no-wizard |
Skip interactive prompts during start-up | |
-h, --help |
Show help screen | |
-v, --version |
Show version | |
-V, --debug [targetConfigKey] |
Show debug logs | |
--docs |
Open docs URL |
Examples
Remove author key from JSON files found in default _locales dir:
remove-json-keys --keys=author # prompts for more keys to remove
Remove info_SUCCESS key from JSON files found in messages dir:
remove-json-keys -n --keys=err_NOT_FOUND --json-dir=messages # no prompts
Remove app_DESC + app_VER keys from JSON files found in data dir:
remove-json -n -k app_DESC,app_VER -d data # no prompts
Config file
Run remove-json init to create .remove-json.config.json5 in your project root to set default options.
Example defaults:
{
"json_dir": "_locales", // name of the folder containing JSON files
"keys": "", // keys to remove (e.g. "app_NAME,author")
"force": false, // force overwrite existing config file when using init
"no_wizard": false // skip interactive prompts during start-up
}
Note: CLI arguments always override config file.
MIT License
Copyright © 2023–2026 Adam Lui.
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 remove_json_keys-1.8.0.tar.gz.
File metadata
- Download URL: remove_json_keys-1.8.0.tar.gz
- Upload date:
- Size: 18.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f8f1a1530882be9fab6c89f5356b3643c163d81b450df803751dd0553837dd8
|
|
| MD5 |
63c3c79900da49b39b25dfaa0ae1c323
|
|
| BLAKE2b-256 |
1853b786e27642e815b10c2aea76b22c2e50568b6770e56da507bbeb436b5788
|
File details
Details for the file remove_json_keys-1.8.0-py3-none-any.whl.
File metadata
- Download URL: remove_json_keys-1.8.0-py3-none-any.whl
- Upload date:
- Size: 21.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31513451dee822056603d32b66bd5a0809c517a55d91427e9282ad8347a94a1f
|
|
| MD5 |
597fd31d963d44304c9d24c4e991a07e
|
|
| BLAKE2b-256 |
61b610cf2f863fc186a7e32cb776b1b10fa7481bac015b014aff2363808c46df
|