python-configuration
python-configuration copied to clipboard
A Python library to load configuration parameters
I believe this fixes the issue I opened: #96 It adds type hinting pathlib.Path to each of data parameter, and adds a Path to the isinstance check before calling open()...
Right now it looks like most of the methods to define a file path take a `Union[str, TextIO]` type. It would be nice if it were possible to pass a...
It would be nice if the behavior when loading dotenv files matched what's possible with the [python-dotenv ](https://github.com/theskumar/python-dotenv) package: > The syntax of `.env` files supported by python-dotenv is similar...
It would be nice if there was a interface to cast config values to specific types when they get loaded. I'm using this library to configure file paths alot and...