python-libconf icon indicating copy to clipboard operation
python-libconf copied to clipboard

Pure-Python libconfig file reader/writer with permissive licensing

Results 4 python-libconf issues
Sort by recently updated
recently updated
newest added

such as a=true will be dump to a=True

I've got some config files to define lots of different configurable items (its a big protocol message set) that work as follows : `item-defs.cfg` : ``` item-defs: ( @include "items/item1.cfg",...

This may be out of scope for this project, but it would be amazing if `python-libconf` could support round-trip editing of a config file. In particular, it would be great...

``` >>> print(libconf.dumps({'source.name': 'test'})) source.name = "test"; >>> print(libconf.dumps({'rules': {'source.name': 'test'}})) rules = { source.name = "test"; }; >>> l = libconf.loads((libconf.dumps({'rules': {'source.name': 'test'}}))) Traceback (most recent call last): File...