python dict转xml

原文链接: python dict转xml

代码

1
2
3
4
5
6
7
8
9
10
11
import dicttoxml
from xml.dom.minidom import parseString
d = {'k':[{'k1':'v1'}, {'k2':'v2', 'k3':'v3'}]}
#xml = dicttoxml.dicttoxml(d, attr_type=False, root=True)
xml = dicttoxml.dicttoxml(d, attr_type=False, root=False)
print(xml)
dom = parseString(xml)
xml = dom.toprettyxml()
print(xml)

阅读更多

sqlalchemy.ext.declarative.api.DeclarativeMeta转dict

原文链接: http://www.kylin-ux.com/2017/04/26/database-package-sqlalchemy-sqlalchemy.ext.declarative.api.DeclarativeMeta转dict

阅读更多

sqlalchemy.ext.declarative.api.DeclarativeMeta转json

原文链接: http://www.kylin-ux.com/2017/04/26/database-package-sqlalchemy-sqlalchemy.ext.declarative.api.DeclarativeMeta转json

阅读更多

Fedora25上使用Pomodoro Technique(番茄工作法)软件

原文链接: http://www.kylin-ux.com/2017/04/24/linux-daily-efficient-fedora25-pomodoro-technique

阅读更多

Web Service系列之实例之使用http.client发送SOAP POST请求

原文链接: http://www.kylin-ux.com/2017/04/23/network-web-web-service系列之实例之使用http-client发送SOAP-POST请求

阅读更多

CentOS7安装nginx+php+mysql/mariadb

原文链接: http://www.kylin-ux.com/2017/04/23/linux-ops-centos7安装nginx-php-mysql-mariadb

阅读更多

Fedora25安装fiddler

原文链接: http://www.kylin-ux.com/2017/04/23/network-web-tool-fedora25-fiddler安装

阅读更多

Web Service系列之常见问题

原文链接: http://www.kylin-ux.com/2017/04/21/network-web-web-service系列之常见问题

阅读更多

Web Service系列之实例之使用urllib发送SOAP POST请求

原文链接: http://www.kylin-ux.com/2017/04/21/network-web-web-service系列之实例之使用urllib发送SOAP-POST请求

阅读更多

Web Service系列之数组参数

原文链接: http://www.kylin-ux.com/2017/04/21/network-web-web-service系列之数组参数

阅读更多