Go to file
Timmy Welch e9d0e874f3
Merge pull request #1 from lordwelch/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2023-04-24 23:20:57 -07:00
.github/workflows Initial Commit 2022-12-14 20:57:57 -08:00
testing Add a display_name attribute to Setting 2023-02-19 18:39:35 -08:00
tests Implement qoc fixes 2023-02-20 01:59:40 -08:00
workflows Initial Commit 2022-12-14 20:57:57 -08:00
.gitignore Initial Commit 2022-12-14 20:57:57 -08:00
.pre-commit-config.yaml [pre-commit.ci] pre-commit autoupdate 2023-04-24 18:48:25 +00:00
LICENSE Initial Commit 2022-12-14 20:57:57 -08:00
README.md Add support for persistent setting groups 2023-01-31 19:18:09 -08:00
requirements-dev.txt Initial Commit 2022-12-14 20:57:57 -08:00
settngs.py Add un-committed fix and version bump 2023-02-20 02:07:35 -08:00
setup.cfg Add un-committed fix and version bump 2023-02-20 02:07:35 -08:00
setup.py Initial Commit 2022-12-14 20:57:57 -08:00
tox.ini Initial Commit 2022-12-14 20:57:57 -08:00

CI GitHub release (latest by date) PyPI PyPI - Downloads PyPI - License

Settngs

This library is an attempt to merge reading flags/options from the commandline (argparse) and settings from a file (json).

It is a modified argparse inspired by how flake8 loads their settings. Note that this does not attempt to be a drop-in replacement for argparse.

Install with pip

pip install settngs

A trivial example is included at the bottom of settngs.py with the output below (using bash). For a more complete example see ComicTagger.

$ python -m settngs
Hello world
$ python -m settngs --hello lordwelch
Hello lordwelch
$ python -m settngs --hello lordwelch -s
Hello lordwelch
Successfully saved settings to settings.json
$ python -m settngs
Hello lordwelch
$ python -m settngs -v
Hello lordwelch
merged_namespace.values.example_verbose=True
$ python -m settngs -v -s
Hello lordwelch
Successfully saved settings to settings.json
merged_namespace.values.example_verbose=True
$ python -m settngs
Hello lordwelch
merged_namespace.values.example_verbose=True
$ cat >settings.json << EOF
{
  "example": {
    "hello": "lordwelch",
    "verbose": true
  },
  "persistent": {
    "test": false,
    "hello": "world"
  }
}
EOF
$ python -m settngs --no-verbose
Hello lordwelch
$ python -m settngs --no-verbose -s
Hello lordwelch
Successfully saved settings to settings.json
$ python -m settngs --hello world --no-verbose -s
Hello world
Successfully saved settings to settings.json
$ python -m settngs
Hello world

settngs.json at the end:

{
  "example": {
    "hello": "world",
    "verbose": false
  },
  "persistent": false,
  "hello": "world"
}

What happened to the 'i'?

PyPi wouldn't let me use 'settings'