Re: regarding xml elements

2008-03-30 Thread Fredrik Lundh
Raj kumar wrote: > document.createElement("abc") > and i appeneded it by using append() method. > But how i can reflect this change to my xml file? write it out again: http://python.org/doc/current/lib/dom-objects.html -- http://mail.python.org/mailman/listinfo/python-list

regarding xml elements

2008-03-29 Thread Raj kumar
Hi, I have an xml file in my application, I have created an element using Example goes like this. document.createElement("abc") and i appeneded it by using append() method. But how i can reflect this change to my xml file? and one more thing is i want to create element with some other pa