python xml_str转json

直接上代码

1 import json
2 import xmltodict
3 
4 def xmlToJson(xml_str):
5     '''传入xml字符串,返回字典'''
6     dic = xmltodict.parse(xml_str, encoding='utf-8')
7     dic = json.dumps(dic, indent=4)
8     return dic

 

posted @ 2019-10-21 14:47  carlvine  阅读(1005)  评论(0编辑  收藏  举报