click_config_file
click_config_file copied to clipboard
Configuration file support for Click applications
I have installed this for my click app and it worked when provided explicitly using `--commit`, but the implicit functionality seems to not work, even when I explicitly set `implicit=True`....
Fixes #11 Before, any keys in the configuration file that did not match any parameters of the command would be silently ignored. This could lead to confusion with users if...
Bumps [ipython](https://github.com/ipython/ipython) from 7.16.3 to 8.10.0. Release notes Sourced from ipython's releases. See https://pypi.org/project/ipython/ We do not use GitHub release anymore. Please see PyPI https://pypi.org/project/ipython/ Commits 15ea1ed release 8.10.0 560ad10...
Bumps [cryptography](https://github.com/pyca/cryptography) from 36.0.1 to 39.0.1. Changelog Sourced from cryptography's changelog. 39.0.1 - 2023-02-07 * **SECURITY ISSUE** - Fixed a bug where ``Cipher.update_into`` accepted Python buffer protocol objects, but allowed...
Hello Currently, click_config_file uses `get_app_dir` to find the config file. I would like a way to look either in current folder or on the $HOME folder, for instance (like "#HOME/.myapprc"),...
Bumps [setuptools](https://github.com/pypa/setuptools) from 60.5.0 to 65.5.1. Release notes Sourced from setuptools's releases. v65.5.1 No release notes provided. v65.5.0 No release notes provided. v65.4.1 No release notes provided. v65.4.0 No release...
Bumps [certifi](https://github.com/certifi/python-certifi) from 2021.10.8 to 2022.12.7. Commits 9e9e840 2022.12.07 b81bdb2 2022.09.24 939a28f 2022.09.14 aca828a 2022.06.15.2 de0eae1 Only use importlib.resources's new files() / Traversable API on Python ≥3.11 ... b8eb5e9 2022.06.15.1...
When using the option to show defaults in help text: `@click.group(context_settings=dict(show_default=True))` I see a bad behavior. When the tool is invoked with `--help`, it has the wrong path for the...
I'd like something like the following behavior when a configuration file setting `name="Universe"` is available at the default location, and `name="Planet"` is available at `custom.cfg`. In particular, I'd like the...
As of now, making a typo in the configuration file (e.g. resulting in a wrong key name) results in the setting being silently ignored. It would be very useful to...