The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
47 views

ConfigObj and absolute paths

i'm having a bit of a path issue when using configobj for python. i'm wondering if there's a way to not use an absolute path in my helper file. For example, instead of: self.config = ...
1
vote
0answers
59 views

ConfigObj validator adds section from cs to config

I have a problem with python configobj. Why is "parameter" (named parameter) from cs added to config during config.validate(validator, preserve_errors=True)? def test_MissingSectionError(self): ...
0
votes
1answer
129 views

ConfigObj option validation

I am using ConfigObj and Validator to parse a configuration file in python. While I like this tool a lot, I am having trouble with validation using a configSpec file. I am using the option() ...
0
votes
1answer
61 views

configobj multiple configurations

I am a new programmer working on a program that contains a list of recipes which can be searched and then generate menu from a selected commonality. My initial thought has been to use a configuration ...
0
votes
3answers
113 views

Make python configobj to not put a space before and after the '='

Simple question. It is possible to make configobj to not put a space before and after the '=' in a configuration entry ? I'm using configobj to read and write a file that is later processed by a bash ...
0
votes
0answers
247 views

Installing configobj for python 2.7

I'm sorry, I'm a Python scrub and I just wanted to make sure that I'm installing this library the right way. I'm trying to get configObj installed for Python 2.7 Should I just browse to the ...
0
votes
0answers
40 views

configobj cannot interpolate Error when refering to a list?

If we get a try.ini file like this: List3 = "'dfdaf dfa,", List4 = '"dfdaf dfa,', Param4=%(List3)s Param5=%(Param2)s then use the configobj (4.7.2) to parse it: ...
0
votes
1answer
196 views

Using StringIO for ConfigObj and Unicode

I am trying to use StringIO to feed ConfigObj. I would like to do this in my unit tests, so that I can mock config "files", on the fly, depending on what I want to test in the configuration objects. ...
7
votes
2answers
169 views

Why doesn't **kwargs interpolate with python ConfigObj?

I'm using ConfigObj in python with Template-style interpolation. Unwrapping my config dictionary via ** doesn't seem to do interpolation. Is this a feature or a bug? Any nice workarounds? $ cat ...
1
vote
2answers
122 views

Get ConfigObj to quote strings

If I run the following script: from configobj import ConfigObj config = ConfigObj() config.filename = 'test.cfg' config['keyword1'] = "the value" config['keyword2'] = "'{0:s}'".format("the value") ...
0
votes
0answers
135 views

Python: Using ConfigObj to create a .py file

I am trying to use ConfigObj to create a python .py file. The issues I'm facing are as follows - How can I append the starting arguments(classname, init statements), import statements etc using ...
2
votes
1answer
178 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) ...
0
votes
1answer
190 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
104 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 ...
2
votes
1answer
589 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
1answer
377 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 ...
8
votes
3answers
1k 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)?