简体   繁体   中英

Obtain element's value in xml via python

How can I obtain the values inside an element which has entitites and values?

The element are inside "level" Below are sample xml :

<observations>

<station wmo-id="94576" bom-id="040913" tz="Australia/Brisbane" stn- 
name="BRISBANE" stn-height="8.13" type="AWS" lat="-27.4808" lon="153.0389" 
forecast-district-id="QLD_PW015" description="Brisbane">

<period index="0" time-utc="2018-03-29T05:50:00+00:00" time-local="2018-03-                    
29T15:50:00+10:00" wind-src="OMD">

<level index="0" type="surface">
<element units="Celsius" type="apparent_temp">29.0</element>
<element units="Celsius" type="delta_t">2.1</element>
<element units="km/h" type="gust_kmh">11</element>
<element units="knots" type="wind_gust_spd">6</element>
<element units="Celsius" type="air_temperature">25.4</element>
<element start-time-local="2018-03-29T09:00:00+10:00" end-time-local="2018- 
03-29T15:51:00+10:00" duration="411" start-time-utc="2018-03- 
28T23:00:00+00:00" end-time-utc="2018-03-29T05:51:00+00:00" units="mm" 
type="rainfall">0.8</element>
</level>
</period>
</station>
</observations>

I have tried using for loop which able to return results up to

for station in root[1]:
  stnname = station.attrib['stn-name']
  for perioddata in station:
    index = perioddata.attrib['index']
    for leveldata in perioddata:
        typedata = leveldata.attrib['type']
        for elementdata in leveldata:
            value = elementdata.attrib['type']
            print(value)
            #result shows only type but not type's value
            #the result i want is apparent_temp & 29.0

Given this element:

<element units="Celsius" type="apparent_temp">29.0</element>

units and type are attributes of the element, but 29.0 is the text of the element.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM