欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

python实现json转XML

时间:2023-04-25

最近要在客户服务器上做一个接口,需要从另一个系统拉取数据到本地,对方提供了resftful接口服务,返回是json数据,需要转换为xml。但是基于客户服务器是linux系统,并且无法连外网,linux默认安装了2.7.x版本的python,便手动实现了一个python函数,不用在服务器上安装第三方依赖

#!/usr/bin/python
# -*- coding: UTF-8 -*-
content=""
def json_to_xml(key, json):
        global content
        if type(json) is dict:
          if key != "":
                content=content+"<%s>" % key
          for key1, value in json.items():
                json_to_xml(key1, value)
          if key !="":
                content=content+"" % key
        elif  type(json) is list:
            for l in json:
                content=content+"<%s>" % key
                json_to_xml("",l)
                content=content+"" % key
        else:
            content=content+"<%s>%s" % (key, json, key)
json = {"data":[{"id":"34534534","num":"20180509"},{"id":"34534534","num":"20180509"}],"code":200,"message":"ok"}
#rec("root", json)
json_to_xml("root",json)
print content
 

打印出结果:ok20020180509345345342018050934534534

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。