Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
558 views

What's better, ConfigObj or ConfigParser?

Which is better for creating a settings file for Python programs, the built-in module (ConfigParser), or the independent project (ConfigObj)?
2
votes
1answer
38 views

can python configObj process a line without '='

I use python ConfigObj to load a config file, it works great if config file in pattern "cfgName=cfgvalue". Now I need write config file in this way: basket.ini [favoFruit] Apple Orange can (how) ...
2
votes
1answer
220 views

py2exe cannot find a module

I have a Python app that works fine. Now I use py2exe to create a windows executable of this app, however the resulting exe fails with complain that it lacks the configobj module Traceback (most ...
0
votes
0answers
15 views

ConfigObj long lists and default values

I have a couple of questions about configobj, which I'm happily trying to use for this project. The first question is, how do I make a very long list of things? Suppose I have declared in a spec ...
0
votes
1answer
26 views

Is this a decent way of sharing dynamic ConfigObj files?

I have several python processes which monitor and act upon physical IO. E.g. shut down a motor if the current is too high. They need to let each other know why they have done something so I thought a ...
0
votes
1answer
122 views

using configobj to read a complete section one by one

I am using configobj to read a config file as below. [default] PROP1 = "12345" PROP2 = "abcde" [section1] PROP1 = "56789" PROP2 = "" [section2] PROP1 = "" PROP2 = "" I aim ...