美文网首页
python XML文件转JSON文件

python XML文件转JSON文件

作者: 泽赫 | 来源:发表于2021-07-13 15:24 被阅读0次
    import json
    import xmltodict
    
    
    # 定义xml转json的函数
    def xmltojson(xmlstr):
        xmlparse = xmltodict.parse(xmlstr)
        jsonstr = json.dumps(xmlparse, indent=1)
        return jsonstr
    
    
    f = open('province_city_district.xml')
    data = f.read()
    f2 = open('country.json', 'a')
    data2 = xmltojson(data)
    data3 = data2.encode('utf-8').decode('unicode_escape')
    f2.write(data3)
    f2.close()
    
    f3 = open('country.json', 'a')
    # print(xmltojson(data))
    

    相关文章

      网友评论

          本文标题:python XML文件转JSON文件

          本文链接:https://www.haomeiwen.com/subject/vkkspltx.html