simplistix / configurator

A Python library for handling configuration files.
https://configurator.readthedocs.io
MIT License
39 stars 6 forks source link

Make it easier to plug in different parsers for file types. #16

Open cjw296 opened 1 year ago

cjw296 commented 1 year ago

Currently you can either use the built-in ones or provide a callable for each parser call. This is an issue if, say, you want to plug in a different yaml parser for all yaml usage, particularly when configurator is used within an application or library whose source code you don't want to modify.

This also came up on #7 ...

cjw296 commented 1 year ago

@wimglenn ^^