Reading multiline values using ConfigParser
Phoe6
orsenthil at gmail.com
Thu Jun 21 04:51:21 CEST 2007
On Jun 20, 10:35 pm, "John Krukoff" <jkruk... at ltgc.com> wrote:
> > Is there anyway, I can include multi-line value in the configfile? I
>
> Following the link to RFC 822 (http://www.faqs.org/rfcs/rfc822.html)
> indicates that you can spread values out over multiple lines as long as
> there is a space or tab character imeediately after the CRLF.
Thanks for the response. It did work!
>>> config = ConfigParser()
>>> config.read("Testcases.txt")
['Testcases.txt']
>>> output = config.get("Information", "Testcases")
>>> print output
tct123
tct124
tct125
>>> output
'\ntct123\ntct124\ntct125'
>>>
However, as I am going to provide Testcases.txt to be "user editable",
I cannot assume or "ask users" to provide value testcases surronded by
spaces. I got to figure out a workaround here.
Thanks,
Senthil
More information about the Python-list
mailing list