Question re ConfigParser

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • loial

    Question re ConfigParser

    Given a section like

    [Data]
    value1
    value2
    value3


    Can ConfigParser be easily used to put the values in a dictionary? If
    so, how?




  • alex23

    #2
    Re: Question re ConfigParser

    On Aug 20, 5:34 pm, loial <jldunn2...@goo glemail.comwrot e:
    Given a section like
    >
    [Data]
    value1
    value2
    value3
    >
    Can ConfigParser be easily used to put the values in a dictionary? If
    so, how?
    Dictionaries are key/value pairs. Do you expect 'value1' to be a key
    or a value?

    If the data is literally as you describe, and not key/value entries
    (such as 'key1: value1' or 'key1=value1'), you would probably be
    better off just stepping through the file, testing for the [data]
    section and then reading the following lines into a list.

    Comment

    • loial

      #3
      Re: Question re ConfigParser

      On 20 Aug, 13:49, alex23 <wuwe...@gmail. comwrote:
      On Aug 20, 5:34 pm, loial <jldunn2...@goo glemail.comwrot e:
      >
      Given a section like
      >
      [Data]
      value1
      value2
      value3
      >
      Can ConfigParser be easily used to put the values in a dictionary? If
      so, how?
      >
      Dictionaries are key/value pairs. Do you expect 'value1' to be a key
      or a value?
      >
      If the data is literally as you describe, and not key/value entries
      (such as 'key1: value1' or 'key1=value1'), you would probably be
      better off just stepping through the file, testing for the [data]
      section and then reading the following lines into a list.
      Thanks. Thats what I did in the end

      Comment

      Working...