Tagged Questions
0
votes
1answer
12 views
xpath (Python lxml): OR for element tag
I have the following xpath:
"//div[@id='instructions']//ol[@id='inst']"
However, what I have as the OL tag can be either OL or UL.
Not sure how to do that.
0
votes
1answer
21 views
What does etree.xpath function of python lxml library do?
I understand that etree object from lxml library is a tree representation of a xml document. It is not clear to me what .xpath function does. I just need to know how to interpret its argument and its ...
1
vote
1answer
55 views
Python/lxml web scraping: dealing with blank entries
I'm using Python and lxml to scrape data on ETFs and mutual funds from the Bloomberg web site. An example of a page I'm trying to scrape data from is ...
0
votes
1answer
22 views
passing evaluated xpath to extension
I'm working with lxml python lib.
Assuming we have product xml such as:
<product id='123' />
And want to apply xsl template:
<xsl:template match="product">
<ssi:include ...
0
votes
1answer
34 views
Get Element Tree with Python lxml
I have the following xml record within a larger xml file:
<Employee>
<id>999</id>
<fname>Tim</fname>
<lname>Boskin</lname>
</Employee>
I am ...
0
votes
1answer
53 views
xpath: How to write conditional xpaths?
I am trying to extract price information from following two pages:
http://jujumarts.com/mobiles-accessories-smartphones-wildfire-sdarkgrey-p-551.html
...
0
votes
1answer
73 views
How to control newline processing in the lxml xpath text() function?
Having switched from Fedora 17 to 18, I get different parsing behaviour for the same lxml code, apparently due to different versions of the underlying libraries (libxml2 and libxslt versions changed).
...
-1
votes
1answer
28 views
finding a href with a specific text in a table
I have an html tables and I am trying to find the row that has a href tag whose text content has the word "Unsubscribe" in it. I am using lxml, python and xpath - I can find the row using this:
...
0
votes
2answers
114 views
Extract value with XPath, etree and python
I try to extract a value with XPath, Python and etree. I have no influence on the .xml file I receive and I think it seems to be somehow invalid.
My method already extracts the text node object I ...
1
vote
2answers
72 views
parsing xml by python lxml tree.xpath
I try to parse a huge file. The sample is below. I try to take <Name>, but I can't
It works only without this string
<LevelLayout ...
0
votes
1answer
97 views
xpath to select from child element to end of parent
I am trying to do this using lxml, but utlimately it is a question about the proper xpath.
I'd like to select from the <pgBreak> element until the end of its parent, in this case <p>
XML IN:
...
1
vote
0answers
57 views
lxml._ElementTree.getpath(element) returns “*” instead of tag names for elements in non default name space
Please help to make getpath() to return full tag names in getpath() xpath or to find workaround
I'm trying to generate xpath to element in a lxml.etree._ElementTree. ElementTree is generated by ...
1
vote
1answer
60 views
Python lxml xpath XPathEvalError: Invalid expression — why?
I'm trying to parse an SVG document with lxml. Here's my code:
nsmap = {
'svg': 'http://www.w3.org/2000/svg',
'xlink': 'http://www.w3.org/1999/xlink',
}
root = etree.XML(svg)
# this works ...
0
votes
2answers
70 views
Parsing failing with LXML Xpath using utf-16
I am parsing the following page: http://www.amazon.de/product-reviews/B004K1K172
Using lxml based etree for parsing.
Content variable containing the entire page content
Code:
myparser = ...
0
votes
1answer
91 views
How to extract strange WWW source code using lxml and XPath
I'm running small project which concern extracting data from WWW.
I found ww with strange source code inside:
<adr:terc xmlns:ks="http://asseco.pl/xml/rpm/ksiegaPodmiot/2011/04/08/" ...
0
votes
0answers
52 views
Issues a longer xpath expression
I am having issues with the urllib and lxml.html modules.
Here is my original code:
import urllib
import lxml.html
down='http://v.163.com/special/visualizingdata/'
...
1
vote
1answer
68 views
XPath to look for subtree
I'm scraping an html document, whose structure changes all the time. Css class names even change, so I can't rely on that. However, one thing never changes, the value is always contained in a subtree ...
2
votes
2answers
134 views
Get the inner HTML of a element in lxml
I am trying to get the HTML content of child node with lxml and xpath in Python. As shown in code below, I want to find the html content of the each of product nodes. Does it have any methods like ...
1
vote
1answer
91 views
Parsing XML with LXML and Python
I have the following XML:
<nfl>
<season season="2012"/>
<conference label="AFC">
<division label="Eastern Division">
<team city="Buffalo" name="Bills" ...
0
votes
1answer
87 views
XPath: How do I find the parent element and its class for all text nodes
For all text nodes, how do I find the parent element's class and tag type
0
votes
1answer
106 views
XPath: Find element with most text content
I want to look for paragraphs. I would use the p tag to look for this but I've seen pages that don't use p when they should. To approximate this, I just want to look for the most text in one tag. Any ...
0
votes
2answers
74 views
XPath: finding divs containing certain tags
I know that it allows you to find a div with an <a> tag using
'//div[a]'
but what if I want a div with both an <a> tag AND a <p> tag.
I tried doing '//div[a][p]'.
I also tried ...
0
votes
1answer
86 views
XML XPath search with Python lxml fails to filter on text() output
Probably missing something obvious - when I filter for general "a" nodes, I get to see their text - including the target link I want - just fine:
ipdb> print [x.text for x in root.xpath(u".//a")]
...
0
votes
1answer
81 views
Parsing results from html table
im trying to match some data from a html output but im not sure what i could do to perform it right. So, im using the following block of code to extract the content of access and groups information:
...
1
vote
2answers
162 views
Python lxml XPATH — find an attribute of all parents of particular node
In an SVG file, I use xpath to find a node that contains a relative SVG path, for example,
<path d="m -0.3,-0.3 l 0.6,0 l 0,0.6 l -0.6,0 l 0,-0.6 z" transform="translate(-1 -0.5)"/>
Various ...
1
vote
1answer
95 views
Xpath returning more than desired (python, urllib, lxml)
I am trying to retrieve the first download link from a website, but my code is returning more than that and I'm not sure why.
Here is a piece of my code:
site_search = ...
1
vote
1answer
237 views
Viewing html text between tags (python, lxml, urllib, xpath)
I am trying to parse some html and I want to retrieve the actual html between the tags, but instead my code is giving me what I believe is the location of the elements.
Here is my code so far:
...
0
votes
1answer
113 views
scrapy HtmlXPathSelector determine xpath by searching for keyword
I have a portion of html like below
<li><label>The Keyword:</label><span><a href="../../..">The text</a></span></li>
I want to get the string "The ...
1
vote
1answer
153 views
Can I parse xpath using python, selenium and lxml?
So I have been trying to figure our how to use BeautifulSoup and did a quick search and found lxml can parse the xpath of an html page. I would LOVE if I could do that but the tutorial isnt that ...
1
vote
3answers
355 views
Python & lxml / xpath: Parsing XML
I need to get the value from the FLVPath from this link : http://www.testpage.com/v2/videoConfigXmlCode.php?pg=video_29746_no_0_extsite
from lxml import html
sub_r = ...
0
votes
1answer
113 views
How to parse sub elements in lxml via xpath
page = urlopen(req)
doc = parse(page).getroot()
table = doc.xpath('/html/body/div/div/div/table')
table
<Element table ...>
doc.xpath('/html/body/div/div/div/table/tr')
<Element tr ...>...
...
1
vote
1answer
89 views
How to parse text from html using lxml?
<p>
Glassware veteran
<strong>Corning </strong>
(
<span class="ticker">
NYSE:
<a class="qsAdd qs-source-isssitthv0000001" ...
0
votes
1answer
184 views
Python/lxml/xpath for parsing Yahoo Finance
EDIT: I have provided the EXACT source code I'm using to try to figure out this issue.
I'm trying to extract the data on "total assets" from Yahoo Finance using Python 2.7 and lxml. An example of a ...
0
votes
2answers
409 views
Python/lxml/Xpath: How do I find the row containing certain text?
Given the URL http://www.smartmoney.com/quote/FAST/?story=financials&timewindow=1&opt=YB&isFinprint=1&framework.view=smi_emptyView , how would you capture and print the contents of an ...
1
vote
1answer
360 views
Python lxml.html XPath “attribute not equal” operator not working as expected
I'm trying to run the following script:
#!python
from urllib import urlopen #urllib.request for python3
from lxml import html
url = ...
2
votes
2answers
272 views
Get Xpath dynamically using ElementTree getpath()
I need to write a dynamic function that finds elements on a subtree of an ATOM xml by building dynamically the XPath to the element.
To do so, I've written something like this:
tree = ...
3
votes
1answer
124 views
Python XpathEvaluator without namespace
I need to write a dynamic function that finds elements on a subtree of an ATOM xml document.
To do so, I've written something like this:
tree = etree.parse(xmlFileUrl)
e = ...
2
votes
2answers
338 views
Xpath normalize-space
I'm feeling dumb. Python & xpath newbie here. I'm trying to extract the complete text 'Open Box Price: $1079.99' using xpath from
<div class="prod-price">
<p class="opbox-price">
...
0
votes
1answer
172 views
Xpath select multiple classes
<div class="one">
<a class="two" href="Something..."><img src="http://..."/></a>
<p> stuff.... </p>
<p><img src="http://....." /></p>
...
0
votes
2answers
206 views
Selenium / lxml : Get xpath
Is there a get_xpath method or a way to accomplish something similar in selenium or lxml.html. I have a feeling that I have seen somewhere but can't find anything like that in the docs.
Pseudocode to ...
0
votes
1answer
104 views
Using XPath with lxml.html
I haven't used XPath much, so bear with me. I have an HTML file that contains two forms, each of which contains some input/select elements.
In [146]: len(doc.xpath('//input | //select'))
Out[146]: 14
...
0
votes
3answers
558 views
Parse xml with lxml - extract element value
Let's suppose we have the XML file with the structure as follows.
<?xml version="1.0" ?>
<searchRetrieveResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
95 views
Getting exactly one element or raising exception with lxml xpath
The xpath() function in lxml normally returns a list of elements.
If I have an XPath which I expect to return exactly one element, what's the nicest way to:
Check that one element is returned or ...
2
votes
1answer
117 views
parsing html using lxml
I have the follow html code
<a name="Audio-Encoders"></a>
<h1 class="chapter"><a href="ffmpeg.html#toc-Audio-Encoders">14. Audio Encoders</a></h1>
<p>A ...
3
votes
2answers
74 views
missing some text when iterating xml elements in python
I am running the following code in Python 2.7.3 on Mac OS X 10.6.8.
import StringIO
from lxml import etree
f = open('./foo', 'r')
doc = ""
while 1:
line = f.readline()
doc += line
if line ...
1
vote
1answer
429 views
Python - Keeping some HTML tags with lxml Xpath feature
I am writing some HTML parsers using LXML Xpath feature. It seems to be working fine, but I have one main problem.
When parsing all the HTML <p> tags, there are words that use the tags ...
0
votes
1answer
187 views
scrapy: Remove elements from an xpath selector
I'm using scrapy to crawl a site with some odd formatting conventions. The basic idea is that I want all the text and subelements of a certain div, EXCEPT a few at the beginning, and a few at the ...
0
votes
1answer
745 views
Parse Html using lxml and xpath
I am trying to use lxml with python because after reading and doing google recommendation is to use lxml over other parsing packages. I have following dom structure and I manage write the correct ...
0
votes
1answer
70 views
xpath not extracting all fields
Im trying to retrieve all the data from a html output with the following code:
proxy_auth = "http://"+proxyUser+":"+proxyPass+"@"+proxyHost
proxy_handler = urllib2.ProxyHandler({"http": proxy_auth})
...
1
vote
2answers
235 views
Using lxml, how can I find a sibling of a parent node?
XML keeps throwing me curve balls. I am having a hard time finding a manual I can understand. So I apologize for all the questions in the past couple of days.
In any case, I have the following XML:
...
