lxml and xml namespaces - Using find and findall to get XML Tag Value
问题 I had issues in getting the text value of and nodes using lxml where the XML text has namespaces in it. I was using findall('Status') but the result was always coming to null. I arrived at the following working code in the end....Is this the correct way of using lxml for fetching node values? Can i improve this further? import lxml xml_string='<?xml version="1.0" encoding="UTF-8"?> <SCPP:Response xmlns:SCPP="http://www.SCPP.com/XMLSchema"> <SCPP:RESP_BODY> <Seed>001335834994</Seed> </SCPP