Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using ConfigParser and I want to be able to get a text variable that has empty lines. For example my config file looks like

[config]
text = hello

    goodbye

but when I display text it is

hello
goodbye

It ignores the empty line. I am wondering if there is a way to add a \n or something so it puts a blank empty line there

*EDIT:*I tried parser = SafeConfigParser(allow_no_value=True)

I tried placing \n in the config file, but that is just read as text.

share|improve this question
1  
What have you tried so far, please upload some code. – enginefree Jan 14 at 20:44
Why do you want to do that? There may be another way to do the same without having to depend on ConfigParser (e.g. adding a separator of some sort and replacing it with a newline on your program code) – asermax Jan 14 at 20:53
I shouldn't have to do that when reading from a simple text file. – Siecje Jan 14 at 21:31

2 Answers

up vote 0 down vote accepted

The get interface provides substitutions that can be used for a suboptimal work around to the parser's strict handling of new lines:

> cat test.cfg 
[test] 
test=one%(nl)stwo%(nl)sthree

> cat test.py 
import ConfigParser
c = ConfigParser.SafeConfigParser()
c.read('test.cfg')
print c.get('test','test', vars={"nl":"\n\n"})

> python test.py 
one

two

three
share|improve this answer

\n is the escape code for a newline. Try using those instead.

share|improve this answer
[config] text = hello \n goodbye Is displayed as hello \n goodbye – Siecje Jan 14 at 20:54
\n is preserved as a character string by ConfigParser – DrSkippy Jan 14 at 23:40
So I see... pypi.python.org/pypi/configobj might be a good alternative then. I think Python 3's ConfigParser introduces options to fix this, as well. – John Brodie Jan 15 at 2:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.