0
votes
1answer
19 views
Is there a way to parse html with lxml, but manipulate it with minidom?
I have an application where I've been using html5lib to liberally parse html. I use the minidom interface, because I need a real DOM API and ElementTree is not appropriate for what …
0
votes
2answers
40 views
Pass XML fragments as stylesheet paramters with lxml?
I'm starting to use lxml in Python for processing XML/XSL documents, and in general it seems very straight forward. However, I'm not able to find a way to pass an XML fragment as a …
0
votes
2answers
39 views
Is it possible for lxml to work in a case-insensitive manner?
I'm trying to scrape META keywords and description tags from arbitrary websites. I obviusly have no control over said website, so have to take what I'm given. They have a variety o …
0
votes
1answer
25 views
Lxml html xpath context
Hello, I'm using lxml to parse a HTML file and I'd like to know how can I set the context of xpath search. What I mean I that I have a node element and want to make xpath search on …
1
vote
1answer
47 views
The choice of XML/XSL lib for Python 2.6.x
Currently I have 2 varieties, LXML and libXML2 that both seem to work. I have tried benchmarking both, specifically for parsing memory string and files into XML and importing XSLT …
0
votes
2answers
305 views
Creating a doctype with lxml’s etree
I want to add doctypes to my XML documents that I'm generating with LXML's etree.
However I cannot figure out how to add a doctype. Hardcoding and concating the string is not an …
1
vote
2answers
46 views
How can you select a node that’s an unknown number of levels deep from a tag in XPath?
Example, if I have
<form name="blah">
<input name="1"/>
<input name="2"/>
<table>
<tr>
<td>
<unkown number …
0
votes
2answers
45 views
How to use lxml to get a message from a website?
At exam.com is not about the weather:
Tokyo: 25°C
I want to use Django 1.1 and lxml to get information at the website. I want to get information that is of "25" only.
HTML exam …
0
votes
0answers
18 views
PAMIE and lxml related question
Hello,
im making web scraper now.
i was received many help from here Stackoverflow.
now almost finished my scraper except some related with serveral problem :)
i was uploaded my sc …
0
votes
1answer
80 views
how to extract some text by use lxml?
hello.
i want to extract some text in certain website.
here is web address what i want to extract some text to make scraper.
http://news.search.naver.com/search.naver?sm=tab%5Fhty& …
2
votes
2answers
348 views
can’t install lxml (python 2.6.3, osx 10.6 snow leopard)
I try to:
easy_install lxml
and I get this error:
File "build/bdist.macosx-10.3-fat/egg/setuptools/command/build_ext.py", line 85, in get_ext_filename
KeyError: 'etre …
0
votes
2answers
288 views
python, lxml and xpath - html table parsing
Hello,
I 'am new to lxml, quite new to python and could not find a solution to the following:
I need to import a few tables with 3 columns and an undefined number of rows startin …
0
votes
2answers
74 views
Weird lxml behavior
Hello. Consider the following snippet:
import lxml.html
html = '<div><br />Hello text</div>'
doc = lxml.html.fromstring(html)
text = doc.xpath('//text()')[0]
pr …
1
vote
2answers
77 views
How to get path of an element in lxml?
Hello, I'm searching in a HTML document using XPath from lxml in python. How can I get the path to a certain element? Here's the example from ruby nokogiri:
page.xpath('//text()') …
3
votes
2answers
99 views
Clojure equivalent to Python’s lxml library?
I'm looking for the Clojure/Java equivalent to Python's lxml library.
I've used it a ton in the past for parsing all sorts of html (as a replacement for BeautifulSoup) and it's …
