0
votes
1answer
51 views
How to extract the first hit elements from an XML NCBI BLAST file?
Hello all,
Im trying to extract only the first hit from an NCBI xml BLAST file. next I would like to get only the first HSP. at the final stage I would like to get these based on best score.
to make …
2
votes
4answers
68 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" />
…
2
votes
1answer
46 views
Xpath builder in Python
I'm building relatively complicated xpath expressions in Python, in order to pass them to selenium. However, its pretty easy to make a mistake, so I'm looking for a library that allows me to build the …
4
votes
7answers
124 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
102 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
3answers
41 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 += …
1
vote
1answer
29 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
2answers
36 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
1answer
25 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
4answers
110 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( …
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
3answers
65 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 …
0
votes
1answer
29 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
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
1answer
29 views
lxml Changing Unicode Characters
I am using lxml to read through an xml file and change a few details. However, when running it I find that even if I just use lxml to read the file and then write it out again, as below:
fil='iTunes …
