Hi,
I have a json that i have parsed with simplejson, Now i have to make a xml by using this json
now i have to create a xml by using these data like name,result,mid dle,first.
could you tell me how to do this,
some code will be good for me,
if you can tell links that will also be good.
Thanx
I have a json that i have parsed with simplejson, Now i have to make a xml by using this json
Code:
a = simplejson.loads('{"result":"true","name":{"first":"abcd","middle":"efgh"}}')
a
{u'result': u'true', u'name': {u'middle': u'efgh', u'first': u'abcd'}}
could you tell me how to do this,
some code will be good for me,
if you can tell links that will also be good.
Thanx
Comment