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
I understand that I can use xml = xml.parser(str)
and then access via xml["rdf:tag2]
but I don't believe you can use the xml.rdf:tag2
notation. How would I be able to access using the second approach?
The text was updated successfully, but these errors were encountered:
I have an rdf XML that uses namespaces. Can this be handled? For example
<rdf:tag
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
rdf:tag2SomeValue</rdf:tag2>
</rdf:tag>
I understand that I can use xml = xml.parser(str)
and then access via xml["rdf:tag2]
but I don't believe you can use the
xml.rdf:tag2
notation. How would I be able to access using the second approach?
The text was updated successfully, but these errors were encountered: