settings should be simple, boring and forget-able. With settipy it will be just that.
Project description
settipy
settings should be simple, and with settipy it is.
settings parses command line and environment variables on one line. And makes it available throughout the code base. Making using settings in your project as boring and unimportant as it should be. settings vars is as simple as:
settipy.set("FOO", "default value", "help text")
getting vars out has the same level of complexity as setting the value.
settipy["FOO"]
Features
- Simple to use
- supports command line and environment variables
- Support for types: str, int, bool, list, dict
- Singleton, makes it easy to use in program anywhere in the code-base
- Supports help text with --help
- Ease of use in any environment examples: linux, docker, k8
- Force program to be run with env or cli vars.
Example
example of how to use. More can be found in the example_project
settipy.set("FOO", "default value", "handy help text")
settipy.parse()
print("foo = ", settipy["FOO"])
The above go will produce program that can be used as follows. get handy help text set in the above example on the same line. This can get very handy when the project grows and is used in different environments
$ python example.py --help
Usage of example.py:
-FOO string
handy help text (default "default value")
When no value is given, default value is used
$ python example.py
foo = default value
Running the binary with command line input
$ python example.py -FOO bar
foo = bar
Running the binary with environment variable
$ FOO=ok;python example.py
foo = ok
Order of preference
variables are set with preference variables on the command line will have highest preference. This because while testing you might want to override environment The priority order is as follows
- Command line input
- Environment variables
- Default values
Types
settipy supports different types. It's possible to use the method "get". But to be more clear to the reader of the code you can add the type e.g "get_bool".
// string
settipy.set("FOO", "default", "help text")
settipy["FOO"]
// integer
settipy.set_int("FOO", 42, "help text")
settipy["FOO"]
// boolean
settipy.set_bool("FOO", True, "help text")
settipy["FOO"]
// list
settipy.set_list("FOO", [1, 2, 3], "help text", sep=".")
settipy["FOO"]
dic = {
"foo": ["bar",],
"foo1": ["bar1", "bar2"]
}
settipy.set_dict("foodict", dic, "dict with lists", item_sep=";", key_sep=";", sep=",")
settipy["foodict"]
Var Should be set
settipy supports different types.
// string
settipy.set("foshure", True, "handy message", should=True)
flag: foshure handy message: should be set
Print vars before startup
Either run the program with --settipy-verbose
as cli argument or settipy.parse(verbose=True)
Install
$ pip install settipy
Future features
- conditional
should
, combinations of input create depenedencies for example -output_file_name could be needed if -mode is write_to_file - Add support for passwords. Password can be stored as hashes. With salt and pepper. Pepper can be stored in envirnoment and the salt given at the cli. This will allow for safer storing of passwords. Passwords are then just hashes in config. At runtime at the parse fase settipy will use the salt and pepper to decrypt the password. Since this will properly use external package the major version upgrade is needed. 1.0 will be requirement free. and 2.0 will start to use packages.
- Add Typing
License
MIT
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
File details
Details for the file settipy-1.8.0.tar.gz
.
File metadata
- Download URL: settipy-1.8.0.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4530f3acf3b4cdf81aca35cdcf311f2fcee236a49835890a3381bd9dffc8abc |
|
MD5 | 804dcf907f5a758ad001990f6e13e535 |
|
BLAKE2b-256 | 3feea10ad92d36d25442b25138c4077b2b7795fbaa1b9ed234bb96f4e7d21db3 |
File details
Details for the file settipy-1.8.0-py3-none-any.whl
.
File metadata
- Download URL: settipy-1.8.0-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc450360d2f458b8e6899e625ca5933c57f217aa96f1746ab6fdc7f6f76625b4 |
|
MD5 | d9e61ad4e4ef608e88cc17bcd8f98b5d |
|
BLAKE2b-256 | 5abba702d48363b7ec20851033bdcba84c876eb57951d8f254e18b5efddf41bf |