free, python XML merger?

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

    #1

    free, python XML merger?

    All:

    We're looking for a python module which allows for quick merging of two
    XML files. Both files follow the same schema. One file contains the
    default values and structure, and the second file contains overriding
    data for the same tags.

    Thanks in advance,
    sulu

  • Harry George

    #2
    Re: free, python XML merger?

    "mistersulu " <mistersulu@gma il.comwrites:
    All:
    >
    We're looking for a python module which allows for quick merging of two
    XML files. Both files follow the same schema. One file contains the
    default values and structure, and the second file contains overriding
    data for the same tags.
    >
    Thanks in advance,
    sulu
    >
    Sounds like a general XML problem, to be solved with cElementTree
    perhaps. Can you provide the schema and small examples of the input
    files and the desired output file?

    --
    Harry George
    PLM Engineering Architecture

    Comment

    • mistersulu

      #3
      Re: free, python XML merger?

      Thanks Harry. I just wrote a new one. Quicker than trying to mod
      somebody else's stuff.

      Thanks again,
      sulu

      Harry George wrote:
      "mistersulu " <mistersulu@gma il.comwrites:
      >
      All:

      We're looking for a python module which allows for quick merging of two
      XML files. Both files follow the same schema. One file contains the
      default values and structure, and the second file contains overriding
      data for the same tags.

      Thanks in advance,
      sulu
      >
      Sounds like a general XML problem, to be solved with cElementTree
      perhaps. Can you provide the schema and small examples of the input
      files and the desired output file?
      >
      --
      Harry George
      PLM Engineering Architecture

      Comment

      Working...