1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | def dict_to_ul(data, result=''):
try:
if not isinstance(data, dict):
return data
result += "<ul>"
for key in data.keys():
result += "<li>"
value = data[key]
if isinstance(value, dict):
result += "%s: %s" % (key, dict_to_ul(value))
else:
result += "%s: %s" % (key, value)
result += "</li>"
result += "</ul>"
return result
except Exception:
return ''
|
More like this
- JSON decorator for views handling ajax requests by anilshanbhag 4 months, 4 weeks ago
- baseconv.py - convert base 10 integers to base X and back again by simon 4 years, 1 month ago
- convert plain text to html by limodou 6 years, 2 months ago
- Converts an integer or floating-point number or a string to a string containing the delimiter character (default comma) after every delimeter_count digits (by default 3 digits) by pikhovkin 1 year, 2 months ago
- SASS/SCSS include template tag. by bryanhelmig 1 year, 3 months ago
Comments