Created
September 2, 2017 16:18
-
-
Save gamesbook/7fc0c365f202b8b8676a6db5fd2e7dc2 to your computer and use it in GitHub Desktop.
Show creating XML (with optional elements) from nested JSON via jinja2 templating
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
"""Purpose: Show creating XML from nested JSON with optional elements. | |
Created: 2017-09-03 | |
Author: [email protected] | |
""" | |
from __future__ import print_function | |
from jinja2 import Template | |
xml_template = """<?xml version="1.0" encoding="UTF-8"?> | |
<urlset>{% for val in values %} | |
<person> | |
<name>{{val.name}}</name> | |
<surname>{{val.surname}}</surname> | |
<age>{{val.age}}</age> | |
{% if val.contact %}<contact> | |
<email>{{val.contact.email}}</email> | |
<phone>{{val.contact.phone}}</phone> | |
</contact>{% endif %} | |
</person>{% endfor %} | |
</urlset>""" | |
# JSON-like | |
values = [ | |
{ | |
"name": "John", | |
"surname": "Brown", | |
"age": 25, | |
"contact": { | |
"email": "foo", | |
"phone": "011" | |
} | |
}, | |
{ | |
"name": "Jane", | |
"surname": "Smith", | |
"age": 19 | |
} | |
] | |
t = Template(xml_template) | |
print(t.render(values=values)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment