I'm trying to get the out put of the wolfram api using a python xml parsing script. Here's my script:
import urllib
import urllib.request
import xml.etree.ElementTree as ET
xml_data=urllib.request.urlopen("http://api.wolframalpha.com/v2/query?input=sqrt+2&appid=APLTT9-9WG78GYE65").read()
root = ET.fromstring(xml_data)
for child in root:
print (child.get("title"))
print (child.attrib)
I know It's only getting the attributes of everything in the title portion of the code but it's a start.
Here's a snippet of the output:
<pod title="Input" scanner="Identity" id="Input" position="100" error="false" numsubpods="1">
<subpod title="">
<plaintext>sqrt(2)</plaintext>
I'm trying to get it to only print out what is in the tags. Does anyone know how to edit the code to get that?