I want to use Python to get open API data. So, I parsed the URL to XML and tried to get the information I wanted through findall().
part of the data,
<safemap:CTPRVN_CD>11</safemap:CTPRVN_CD>
<safemap:SGG_CD>11500</safemap:SGG_CD>
i want this,
root.findall('safemap:ctprvn_cd')
but returned empty list.