the-conf


Namethe-conf JSON
Version 0.0.21 PyPI version JSON
download
home_pagehttps://github.com/jaesivsm/the_conf
SummaryConfig build from multiple sources
upload_time2023-01-10 13:00:45
maintainer
docs_urlNone
authorFrançois Schmidts
requires_python>=3.6,<4.0
licenseGPLv3
keywords conf configuration json yaml
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            [![Build Status](https://travis-ci.org/jaesivsm/the_conf.svg?branch=master)](https://travis-ci.org/jaesivsm/the_conf) [![Coverage Status](https://coveralls.io/repos/github/jaesivsm/the_conf/badge.svg?branch=master)](https://coveralls.io/github/jaesivsm/the_conf?branch=master)

From [this](http://sametmax.com/les-plus-grosses-roues-du-monde/)

    Une bonne lib de conf doit:

    * Offrir une API standardisée pour définir les paramètres qu’attend son programme sous la forme d’un schéma de données.
    * Permettre de générer depuis ce schéma les outils de parsing de la ligne de commande et des variables d’env.
    * Permettre de générer depuis ce schéma des validateurs pour ces schémas.
    * Permettre de générer des API pour modifier la conf.
    * Permettre de générer des UIs pour modifier la conf.
    * Séparer la notion de configuration du programme des paramètres utilisateurs.
    * Pouvoir marquer des settings en lecture seule, ou des permissions sur les settings.
    * Notifier le reste du code (ou des services) qu’une valeur à été modifiée. Dispatching, quand tu nous tiens…
    * Charger les settings depuis une source compatible (bdd, fichier, api, service, etc).
    * Permettre une hiérarchie de confs, avec une conf principale, des enfants, des enfants d’enfants, etc. et la récupération de la valeur qui cascade le long de cette hiérarchie. Un code doit pouvoir plugger sa conf dans une branche de l’arbre à la volée.
    * Fournir un service de settings pour les architectures distribuées.
    * Etre quand même utile et facile pour les tous petits scripts.
    * Auto documentation des settings.


Beforehand: for more clarity ```the_conf``` will designate the current program, its configuration will be referred to as the _meta conf_ and the configurations it will absorb (files / cmd line / environ) simply as the _configurations_.

# 1. read the _meta conf_

```the_conf``` should provide a singleton.
On instantiation the singleton would read the _meta conf_ (its configuration) from a file. YML and JSON will be considered first. This file will provide names, types, default values and if needed validator for options.

```the_conf``` will the validate the conf file. For each config value :
 * if value has _choices_ and _default value_, _default value_ has to be among _choices_.
 * if the value is nested, a node can't hold anything else than values
 * _required_ values can't have default

# 2. read the _configurations_

Once the _meta conf_ has been processed, ```the_conf``` will assemble all values at its reach from several sources.
Three types are to be considered:
 * files (again YML/JSON but maybe also later ini)
 * command line
 * environ
in this order of importance. This order must be itself overridable. ```the_conf``` must provide a backend for values from the configuration to be reached.

```python
the_conf.load('path/to/meta/conf.yml')
the_conf.nested.value
> 1
```

Upon reading _configurations_, ```the_conf``` will validate gathered values.
 * _configurations_ file type will be guessed from file extention (yaml / yml, json, ini), anything else must raise an error. Parsing errors won't also be silenced. Although, missing won't be an issue as long as all required values are gathered.
 * values must be in the type there declared in or cast to it without error
 * required values must be provided
 * if a value is configured with _choices_, the gathered value must be in _choices_

The first writable, readable available _configuration_ file found will be set as the main. Values will be edited on it but values from it will still be overridden according to the priorities. A warning should be issued if the main _configuration_ is overriddable.
If no suitable file is found, a warning should also be issued ; edition will be impossible and will generate an error.

# 3. generate the _configurations_

Provide an API to list and validate values needed from the _configurations_ (the required ones).
Provide a command line UI to process that list to let a user generate a _configuration_ file.

# 4. write the _configurations_

Depending on the permissions set in the _meta conf_, ```the_conf``` must allow to edit the values in the configuration file set as _main_ on read phase.
If editing a value which will be ignored for being overriden, a warning must be issued.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jaesivsm/the_conf",
    "name": "the-conf",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6,<4.0",
    "maintainer_email": "",
    "keywords": "conf,configuration,json,yaml",
    "author": "Fran\u00e7ois Schmidts",
    "author_email": "francois@schmidts.fr",
    "download_url": "https://files.pythonhosted.org/packages/04/c6/78e0a308d9ecdbb9b0743e01b9f706d9bea61b72c7375db7221ddd209928/the_conf-0.0.21.tar.gz",
    "platform": null,
    "description": "[![Build Status](https://travis-ci.org/jaesivsm/the_conf.svg?branch=master)](https://travis-ci.org/jaesivsm/the_conf) [![Coverage Status](https://coveralls.io/repos/github/jaesivsm/the_conf/badge.svg?branch=master)](https://coveralls.io/github/jaesivsm/the_conf?branch=master)\n\nFrom [this](http://sametmax.com/les-plus-grosses-roues-du-monde/)\n\n    Une bonne lib de conf doit:\n\n    * Offrir une API standardis\u00e9e pour d\u00e9finir les param\u00e8tres qu\u2019attend son programme sous la forme d\u2019un sch\u00e9ma de donn\u00e9es.\n    * Permettre de g\u00e9n\u00e9rer depuis ce sch\u00e9ma les outils de parsing de la ligne de commande et des variables d\u2019env.\n    * Permettre de g\u00e9n\u00e9rer depuis ce sch\u00e9ma des validateurs pour ces sch\u00e9mas.\n    * Permettre de g\u00e9n\u00e9rer des API pour modifier la conf.\n    * Permettre de g\u00e9n\u00e9rer des UIs pour modifier la conf.\n    * S\u00e9parer la notion de configuration du programme des param\u00e8tres utilisateurs.\n    * Pouvoir marquer des settings en lecture seule, ou des permissions sur les settings.\n    * Notifier le reste du code (ou des services) qu\u2019une valeur \u00e0 \u00e9t\u00e9 modifi\u00e9e. Dispatching, quand tu nous tiens\u2026\n    * Charger les settings depuis une source compatible (bdd, fichier, api, service, etc).\n    * Permettre une hi\u00e9rarchie de confs, avec une conf principale, des enfants, des enfants d\u2019enfants, etc. et la r\u00e9cup\u00e9ration de la valeur qui cascade le long de cette hi\u00e9rarchie. Un code doit pouvoir plugger sa conf dans une branche de l\u2019arbre \u00e0 la vol\u00e9e.\n    * Fournir un service de settings pour les architectures distribu\u00e9es.\n    * Etre quand m\u00eame utile et facile pour les tous petits scripts.\n    * Auto documentation des settings.\n\n\nBeforehand: for more clarity ```the_conf``` will designate the current program, its configuration will be referred to as the _meta conf_ and the configurations it will absorb (files / cmd line / environ) simply as the _configurations_.\n\n# 1. read the _meta conf_\n\n```the_conf``` should provide a singleton.\nOn instantiation the singleton would read the _meta conf_ (its configuration) from a file. YML and JSON will be considered first. This file will provide names, types, default values and if needed validator for options.\n\n```the_conf``` will the validate the conf file. For each config value :\n * if value has _choices_ and _default value_, _default value_ has to be among _choices_.\n * if the value is nested, a node can't hold anything else than values\n * _required_ values can't have default\n\n# 2. read the _configurations_\n\nOnce the _meta conf_ has been processed, ```the_conf``` will assemble all values at its reach from several sources.\nThree types are to be considered:\n * files (again YML/JSON but maybe also later ini)\n * command line\n * environ\nin this order of importance. This order must be itself overridable. ```the_conf``` must provide a backend for values from the configuration to be reached.\n\n```python\nthe_conf.load('path/to/meta/conf.yml')\nthe_conf.nested.value\n> 1\n```\n\nUpon reading _configurations_, ```the_conf``` will validate gathered values.\n * _configurations_ file type will be guessed from file extention (yaml / yml, json, ini), anything else must raise an error. Parsing errors won't also be silenced. Although, missing won't be an issue as long as all required values are gathered.\n * values must be in the type there declared in or cast to it without error\n * required values must be provided\n * if a value is configured with _choices_, the gathered value must be in _choices_\n\nThe first writable, readable available _configuration_ file found will be set as the main. Values will be edited on it but values from it will still be overridden according to the priorities. A warning should be issued if the main _configuration_ is overriddable.\nIf no suitable file is found, a warning should also be issued ; edition will be impossible and will generate an error.\n\n# 3. generate the _configurations_\n\nProvide an API to list and validate values needed from the _configurations_ (the required ones).\nProvide a command line UI to process that list to let a user generate a _configuration_ file.\n\n# 4. write the _configurations_\n\nDepending on the permissions set in the _meta conf_, ```the_conf``` must allow to edit the values in the configuration file set as _main_ on read phase.\nIf editing a value which will be ignored for being overriden, a warning must be issued.\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "Config build from multiple sources",
    "version": "0.0.21",
    "split_keywords": [
        "conf",
        "configuration",
        "json",
        "yaml"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a4db248b2de289b5a46eab16ece110bc9efe2376937acabb76b0e66555738ea",
                "md5": "630507be018d8f64e8c90b0d4bc6eb68",
                "sha256": "c5b52f1ef2f7b1d225c32d4cbc39326404300842bda4efad90204e3e73d6f7f7"
            },
            "downloads": -1,
            "filename": "the_conf-0.0.21-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "630507be018d8f64e8c90b0d4bc6eb68",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6,<4.0",
            "size": 19836,
            "upload_time": "2023-01-10T13:00:42",
            "upload_time_iso_8601": "2023-01-10T13:00:42.889552Z",
            "url": "https://files.pythonhosted.org/packages/8a/4d/b248b2de289b5a46eab16ece110bc9efe2376937acabb76b0e66555738ea/the_conf-0.0.21-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04c678e0a308d9ecdbb9b0743e01b9f706d9bea61b72c7375db7221ddd209928",
                "md5": "5805a1cb8e2ebc8b7884a08e299d1ab3",
                "sha256": "4bc67fc17e6a32524cbdca874fee152ff405aa5f16bfd8d6c271bd16f73ad3f2"
            },
            "downloads": -1,
            "filename": "the_conf-0.0.21.tar.gz",
            "has_sig": false,
            "md5_digest": "5805a1cb8e2ebc8b7884a08e299d1ab3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6,<4.0",
            "size": 20204,
            "upload_time": "2023-01-10T13:00:45",
            "upload_time_iso_8601": "2023-01-10T13:00:45.499801Z",
            "url": "https://files.pythonhosted.org/packages/04/c6/78e0a308d9ecdbb9b0743e01b9f706d9bea61b72c7375db7221ddd209928/the_conf-0.0.21.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-10 13:00:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "jaesivsm",
    "github_project": "the_conf",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "the-conf"
}
        
Elapsed time: 0.02610s