26
Nov
Introduction As noted in the previous article the simplistic version is rife with problems including scalability, maintainability and extensibility. A simple extension from Version Ø is to try and hide the Python configuration details behind a property class. That is implement a pseudo data class that exposes a set of properties that allow a developer to simply do property set and get calls to retrieve and persist property values. From the maintainers point of view this implementation should support the following capabilities. Allow auto creation of configuration sections if they are missing Allow auto creation of property values if they…