Tagged Questions
lxml is a Python library for processing XML and HTML.
15
votes
11answers
5k views
How do you install lxml on OS X Leopard without using MacPorts or Fink?
I've tried this and run in to problems a bunch of times in the past. Does anyone have a recipe for installing lxml on OS X without MacPorts or Fink that definitely works?
Preferably with complete ...
12
votes
4answers
4k views
Parsing HTML in python - lxml or BeautifulSoup? Which of these is better for what kinds of purposes?
From what I can make out, the two main HTML parsing libraries in Python are lxml and BeautifulSoup. I've chosen BeautifulSoup for a project I'm working on, but I chose it for no particular reason ...
11
votes
3answers
2k views
Why doesn't xpath work when processing an XHTML document with lxml (in python)?
I am testing against the following test document:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
...
9
votes
5answers
6k views
Installing easy_install… to get to installing lxml
I've come to grips with the fact that ElementTree isn't going to do what I want it to do. I've checked out the documentation for lxml, and it appears that it will serve my purposes. To get lxml, I ...
8
votes
1answer
297 views
Python - Validation with multiple schemas using lxml
I'm working with a schema that was built by a third party and I'd like to validate it with lxml. The problem is that such a schema is split over different xsd files, which reference themselves.
For ...
7
votes
2answers
222 views
How to parse this huge XML file with nested elements using lxml the efficient way?
I tried parsing this huge XML document using XML minidom. While it worked fine on a sample file, it choked the system when trying to process the real file (about 400 MB).
I tried adapting code (it ...
7
votes
2answers
196 views
Python: Injecting HTML content into a tag using `lxml.html`
I'm using the lxml.html library to parse an HTML document.
I located a specific tag, that I call content_tag, and I want to change its content (i.e. the text between <div> and </div>,) ...
7
votes
4answers
452 views
ubuntu 11.04 lxml import etree problem for custom python
ubuntu 11.04 has native python2.7 i build python2.5 from source to /usr/local/python2.5/bin, and try to install lxml for my custom python2.5 install. Also i use virtualenv. I switch to my env with ...
7
votes
3answers
209 views
Is there an elegant way to count tag elements in a xml file using lxml in python?
I could read the content of the xml file to a string and use string operations to achieve this, but I guess there is a more elegant way to do this. Since I did not find a clue in the docus, I am sking ...
7
votes
4answers
1k views
Best way for a beginner to learn screen scraping with python
This might be one of thoose questions that are difficult to answer, but here goes:
I dont consider my self programmer - but I would like to :-) I've learned R, because I was sick and tired of spss, ...
7
votes
1answer
2k views
Building lxml for Python 2.7 on Windows
I am trying to build lxml for Python 2.7 on Windows 64 bit machine. I couldn't find lxml egg for Python 2.7 version. So I am compiling it from sources. I am following instructions on this site
...
7
votes
3answers
5k views
Need python lxml syntax help for parsing html
I am brand new to python, and I need some help with the syntax for finding and iterating through html tags using lxml. Here are the use-cases I am dealing with:
HTML file is fairly well formed (but ...
6
votes
2answers
1k views
How to install lxml with easy_install?
I'm having difficulty installing lxml with easy_install on Ubuntu 11.
When I type $ easy_install lxml I get:
Searching for lxml
Reading http://pypi.python.org/simple/lxml/
Reading ...
6
votes
3answers
4k views
pip install lxml error
this is my error :
(mysite)zjm1126@zjm1126-G41MT-S2:~/zjm_test/mysite$ pip install lxml
Downloading/unpacking lxml
Running setup.py egg_info for package lxml
Building lxml version 2.3.
...
6
votes
4answers
2k views
lxml etree xmlparser namespace problem
I have an xml doc that I am trying to parse using Etree.lxml
<Envelope xmlns="http://www.xxx.com/zzz/yyy">
<Header>
<Version>1</Version>
</Header>
<Body>
...
6
votes
1answer
543 views
Entity references and lxml
Here's the code I have:
from cStringIO import StringIO
from lxml import etree
xml = StringIO('''<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE root [
<!ENTITY test "This is a test">
...
6
votes
2answers
452 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 great to be able to ...
6
votes
2answers
2k views
How to parse malformed HTML in python
I need to browse the DOM tree of a parsed HTML document.
I'm using uTidyLib before parsing the string with lxml
a = tidy.parseString(html_code, options)
dom = etree.fromstring(str(a))
sometimes I ...
5
votes
1answer
164 views
How to preserve namespace information when parsing HTML with lxml?
>>> from lxml.etree import HTML, tostring
>>> tostring(HTML('<fb:like>'))
'<html><body><like/></body></html>'
Note how the tag turns from ...
5
votes
1answer
583 views
In lxml, how do I remove a tag but retain all contents?
The problem is this: I have an XML fragment like so:
<fragment>text1 <a>inner1 </a>text2 <b>inner2</b> <c>t</c>ext3</fragment>
For the result, I want ...
5
votes
1answer
430 views
Is there a switch to ignore undefined namespace prefixes in LXML?
I'm parsing a non-compliant XML file (Sphinx's xmlpipe2 format) and would like LXML parser to ignore the fact that there are unresolved namespace prefixes.
An example of the Sphinx XML:
...
5
votes
1answer
2k views
Encoding in python with lxml - complex solution
I need to download and parse webpage with lxml and build UTF-8 xml output. I thing schema in pseudocode is more illustrative:
from lxml import etree
webfile = urllib2.urlopen(url)
root = ...
5
votes
2answers
2k views
How do I match contents of an element in XPath (lxml)?
I want to parse HTML with lxml using XPath expressions. My problem is matching for the contents of a tag:
For example given the
<a href="http://something">Example</a>
element I can ...
5
votes
7answers
2k views
How can I parse HTML with html5lib, and query the parsed HTML with XPath?
I am trying to use html5lib to parse an html page in to something I can query with xpath. html5lib has close to zero documentation and I've spent too much time trying to figure this problem out. ...
5
votes
3answers
2k views
Parsing broken XML with lxml.etree.iterparse
I'm trying to parse a huge xml file with lxml in a memory efficient manner (ie streaming lazily from disk instead of loading the whole file in memory). Unfortunately, the file contains some bad ascii ...
5
votes
1answer
1k views
python lxml on app engine?
Can I use python lxml on google app engine? ( or do i have to use Beautiful Soup? )
I have started using Beautiful Soup but it seems slow. I am just starting to play with the idea of "screen ...
5
votes
1answer
1k views
lxml equivalent to BeautifulSoup “OR” syntax?
I'm converting some html parsing code from BeautifulSoup to lxml. I'm trying to figure out the lxml equivalent syntax for the following BeautifullSoup statement:
soup.find('a', {'class': ['current ...
5
votes
2answers
550 views
How to get lxml working under IronPython?
I need to port some code that relies heavily on lxml from a CPython application to IronPython.
lxml is very Pythonic and I would like to keep using it under IronPython, but it depends on libxslt and ...
5
votes
4answers
791 views
Problem using py2app with the lxml package
I am trying to use 'py2app' to generate a standalone application from some Python scripts. The Python uses the 'lxml' package, and I've found that I have to specify this explicitly in the setup.py ...
4
votes
3answers
244 views
Using Python Iterparse For Large XML Files
I need to write a parser in Python that can process some extremely large files ( > 2 GB ) on a computer without much memory (only 2 GB). I wanted to use iterparse in lxml to do it.
My file is of the ...
4
votes
4answers
240 views
What’s the most forgiving HTML parser in Python?
I have some random HTML and I used BeautifulSoup to parse it, but in most of the cases (>70%) it chokes. I tried using Beautiful soup 3.0.8 and 3.2.0 (there were some problems with 3.1.0 upwards), but ...
4
votes
4answers
639 views
(still) cannot properly install lxml 2.3 for python, but at least 2.2.8 works
30 jun 2011 -- I am awarding @Pablo for this question, because of his answer.
I am still unable to properly install lxml 2.3 for reasons discussed in his comments. I gather for a little bit of work ...
4
votes
3answers
1k views
Encoding error while parsing RSS with lxml
I want to parse downloaded RSS with lxml, but I don't know how to handle with UnicodeDecodeError?
request = urllib2.Request('http://wiadomosci.onet.pl/kraj/rss.xml')
response = ...
4
votes
2answers
593 views
How to find XML Elements via XPath in Python in a namespace-agnostic way?
since I had this annoying issue for the 2nd time, I thought that asking would help.
Sometimes I have to get Elements from XML documents, but the ways to do this are awkward.
I’d like to know a ...
4
votes
1answer
752 views
Py2exe lxml woes
I have a wxpython application that depends on lxml and works well when running it through the python interpreter. However, when creating an exe with py2exe, I got this error
ImportError: No module ...
4
votes
3answers
876 views
Using python to edit html, but lxml converts nice html entities to strange encoding
I'm trying to use python (with pyquery and lxml) to alter and clean up some html.
Eg. html = "<div><!-- word style><bleep><omgz 1,000 tags><--><p>It’s a ...
4
votes
3answers
1k views
How to use lxml to find element text in XHTML document
I've been bashing my head at this for ages, I must be doing something stupid.
I am trying to retrieve all of the possible Wikipedia supported languages and output them to a text file by traversing ...
4
votes
5answers
675 views
Python, XPath: Find all links to images
I'm using lxml in Python to parse some HTML and I want to extract all link to images. The way I do it right now is:
//a[contains(@href,'.jpg') or contains(@href,'.jpeg') or ... (etc)]
There are a ...
4
votes
1answer
837 views
How do I use xml namespaces with find/findall in lxml?
I'm trying to parse content in an OpenOffice ODS spreadsheet. The ods format is essentially just a zipfile with a number of documents. The content of the spreadsheet is stored in 'content.xml'.
...
4
votes
1answer
297 views
Memory consumption in Cherrypy
I am using Cherrypy in a RESTful web service and server returns XML as a result (lxml is being used to create XML). Some of those XMLs are quite large. I have noticed that memory is not being released ...
4
votes
2answers
741 views
python [lxml] - cleaning out html tags
from lxml.html.clean import clean_html, Cleaner
def clean(text):
try:
cleaner = Cleaner(scripts=True, embedded=True, meta=True, page_structure=True, links=True, ...
4
votes
1answer
402 views
Find elements based on xsd type with lxml
I am trying to get a list of elements with a specific xsd type with lxml 2.x and I can't figure out how to traverse the xsd for specific types.
Example of schema:
<xsd:element name="ServerOwner" ...
4
votes
2answers
1k views
HTML parser for GAE
Generally I use lxml for my HTML parsing needs, but that isn't available on Google App Engine. The obvious alternative is BeautifulSoup, but I find it chokes too easily on malformed HTML. Currently I ...
4
votes
2answers
2k 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: 'etree'
any hints?
4
votes
1answer
3k views
Python: adding namespaces in lxml
I'm trying to specify a namespace using lxml similar to this example (taken from here):
<TreeInventory xsi:noNamespaceSchemaLocation="Trees.xsd" ...
4
votes
2answers
5k views
How to match a text node then follow parent nodes using XPath
I'm trying to parse some HTML with XPath. Following the simplified XML example below, I want to match the string 'Text 1', then grab the contents of the relevant content node.
<doc>
...
3
votes
1answer
40 views
Python lxml using xi:include with multiple Xml fragments
I am developing a simple xml logfile class using lxml in Python.
My approach so far has been to use two files. A well-formed XML file which includes a second file which is a XML fragment. I am using ...
3
votes
3answers
73 views
XPath: select tag with empty value
How I can find in XPath 1.0 all rows with empty col name="POW"?
<row>
<col name="WOJ">02</col>
<col name="POW"/>
<col name="GMI"/>
<col name="RODZ"/>
<col ...
3
votes
1answer
100 views
lxml.html.tostring re-ordered doctype and xml tags when printing
Imagine I have a file test.html with content,
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" ...
3
votes
2answers
120 views
Xpath vs DOM vs BeautifulSoup vs lxml vs other Which is the fastest approach to parse a webpage?
I know how to parse a page using Python. My question is which is the fastest method of all parsing techniques, how fast is it from others?
The parsing techniques I know are Xpath, DOM, BeautifulSoup, ...