XML data handling

Discussion about programs, libraries and tools that work with MicroPython. Mostly these are provided by a third party.
Target audience: All users and developers of MicroPython.
Post Reply
ellieakim
Posts: 1
Joined: Wed Apr 06, 2016 8:47 am

XML data handling

Post by ellieakim » Wed Apr 20, 2016 7:04 am

Hi

Can mycropython handling xml data?

I receive below xml data from other server and handling data in micropython.
But I can't find method.

Please help me.
[code]----------------------------

<?xml version="1.0" encoding="euc-kr"?>
<DATAS>
<RESULT>200</RESULT>
<NAME>NO2</NAME>
<DHCP>1</DHCP>
<IP>192.168.0.102</IP>
<SUBNET>255.255.255.0</SUBNET>
<GATEWAY>192.168.0.1</GATEWAY>
<ONTIME>06:00:00</ONTIME>
<OFFTIME>17:00:00</OFFTIME>
<MON>1</MON>
<TUE>1</TUE>
<WED>1</WED>
<THU>1</THU>
<FRI>1</FRI>
<SAT>0</SAT>
<SUN>0</SUN>
<BRIGHTNESS>8</BRIGHTNESS>
<CMD>0</CMD>
</DATAS>[/code]


Post Reply