2
votes
3answers
50 views
Editing the XML attributes from a XML file using Python
Hi ,
I have an XML file which contains some data as given.
<?xml version="1.0" encoding="UTF-8" ?>
- <ParameterData>
<CreationInfo date="10/28/2009 03:05:14 PM" user="manoj" />
…
0
votes
0answers
16 views
Adding Images to a Gallery DB
I've got a front-end flash gallery that parses an XML file.
The file provides the image name, path, time-stamp, and optional short description. Catagories are based on the name of the directory.
…
1
vote
1answer
27 views
XML edit attributes
Hi,
I want to edit the attributes of an element in an XML file.
The file looks like
<Parameter name="Spec 2 Circumference/Length" type="real" mode="both">
<Value>0.0</Value>
…
0
votes
3answers
36 views
xml.dom.minidom python issue
from xml.dom.minidom import *
resp = "<title> This is a test! </title>"
rssDoc = parseString(resp)
titles = rssDoc.getElementsByTagName('title')
moo = ""
for t in titles:
moo += …
4
votes
7answers
118 views
easiest way to parse xml in python
I have many rows in a database that contain xml and I'm trying to write a python script that will go through those rows and count how many instances of a particular node attribute show up. for …
1
vote
6answers
97 views
Parsing xml file in python
I have an XML file in the following format:
<doc>
<id name="X">
<type name="A">
<min val="100" id="80"/>
<max val="200" id="90"/>
</type>
<type …
0
votes
1answer
24 views
Combine lxml XSLT pretty_print with strip-space
I'm cleaning up some gross XML, and so I've had pretty_print = True set in the call to etree.tostring() on my lxml output of the XSL transform. However, that left me with a few junk whitespace nodes …
2
votes
2answers
214 views
Alter namespace prefixing with ElementTree in Python
By default, when you call ElementTree.parse(someXMLfile) the Python ElementTree library prefixes every parsed node with it's namespace URI in Clark's Notation:
…
0
votes
1answer
27 views
setting XML value using xmlrpc & python
Hi ,
I need to set the value of a field in an XML file which exists on a remote Linux box. How do I find out which port I should connect to ?
But even a proper ping is not happening:
import …
0
votes
2answers
31 views
lxml[.objectify] documentElement tagName
I'm receiving data packets in XML format, each with a specific documentRoot tag, and I'd like to delegate specialized methods to take care of those packets, based on the root tag name. This worked …
0
votes
2answers
234 views
XML parsing expat in python handling data
I am attempting to parse an XML file using python expat. I have the following line in my XML file:
<Action><fail/></Action>
expat identifies the start and end tags but …
0
votes
3answers
62 views
Extract resulted list data to a xml file in python
Hi,
How can I extract my resulted list data to an xml file?
My resulted list is given below:
week=[{'item': Electrelane, 'weight': 140}, {'item': Kraftwerk, 'weight': 117},{'item': The Flaming Lips, …
0
votes
0answers
34 views
how I get an external xml file from my list data in python [closed]
Possible Duplicate:
Extract resulted list data to a xml file in python
Hi,
How can i make an external xml file having my list data output in python?
For example:
list=[{"denver", "I want to …
0
votes
3answers
62 views
Python to generate output ready for Excel
I have a Python script gathering info from some remote network devices. The output can be maybe 20 to 1000 lines of text. This then goes into excel on my local PC for now.
Now access to this Linux …
2
votes
4answers
106 views
Python: How do I read and parse a unicode utf-8 text file?
I am exporting UTF-8 text from Excel and I want to read and parse the incoming data using Python. I've read all the online info so I've already tried this, for example:
txtFile = codecs.open( …
