You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As someone who parses large xml files, I would like a way to locate a specific element within the file based on the parsed model, so that I can report to users where there are issues within the large xml files.
I understand that this would require generating models that inherit from some type of base, or perhaps setting attributes on the built models as its parsed...
order.bill_to.get_xpath() # or something# can then be used with element treeetree.parse("tests/fixtures/primer/sample.xml").xpath(order.bill_to.get_xpath())[0].source_line
The text was updated successfully, but these errors were encountered:
As someone who parses large xml files, I would like a way to locate a specific element within the file based on the parsed model, so that I can report to users where there are issues within the large xml files.
I understand that this would require generating models that inherit from some type of base, or perhaps setting attributes on the built models as its parsed...
Possible ideas:
Given
Then
or
The text was updated successfully, but these errors were encountered: