fork download
  1. import sys
  2. from xml.etree import cElementTree as etree
  3.  
  4. input_file = sys.stdin
  5. tree = etree.parse(input_file)
  6. print('\n'.join(elem.text for elem in tree.iter('build_location')))
Success #stdin #stdout 0.11s 11520KB
stdin
    <build_location>
     \\Datalocation\la\releases\3.2.0.21_JB2.2_RB2
      </build_location>
stdout
     \\Datalocation\la\releases\3.2.0.21_JB2.2_RB2