I'm using ConfigParser for a project with a configuration file that is getting to large. I plan to split it but maintain a central config file that points to the others.
I haven't seen this in the documentation, but can ConfigParser handle a hierarchical configuration file structure? Can I somehow point it from one config file to another automatically?
Of course I could do it manually or better yet, create a module that handles this using ConfigParser as a low-level tool, but I'm sure I'm not the first to tackle thisproblem - do you know of a different package that handles this? or perhaps a different approach altogether?