0
votes
2answers
35 views

Finding links fast: regex vs. lxml

I am trying to build a fast web crawler, and as a result, I need an efficient way to locate all the links on a page. What is the performance comparison between a fast XML/HTML parser like lxml and ...
5
votes
1answer
65 views

Find by Text and Replace in HTML BeautifulSoup

I'm trying to mark up an HTML file (literally wrapping strings in "mark" tags) using python and BeautifulSoup. The problem is basically as follows... Say I have my original html document: test = ...
0
votes
0answers
51 views

How to find all the links on a page using lxml and Python

I've written some basic code to find and print all the links on a page: import requests import lxml.html url = "http://example.com" r = requests.get(url) page = r.content dom = ...
0
votes
2answers
60 views

lxml findall div and span tags

How can I find all div and span tags with order preserved.With BeautifulSoup it is very simple: soup.findAll(name=['span', 'div']), but I switched recently to lxml since it is much faster than ...
0
votes
3answers
79 views

Python - Issues trying to use LXML to parse Website Search Results

I am trying to use LXML to parse the search results returned from this search URL: http://www.rte.ie/player/ie/search/?q=news The article tags returned in the HTML is this: <article ...
1
vote
1answer
120 views

lxml - ignore <br> tag in html

I wrote a tiny html-parser in Python using lxml. It's very useful, but I have a problem. I have the following code: tags = doc.xpath('//table//tr/td[@align="right"]/b') for tag in tags: ...
1
vote
2answers
378 views

Web page scraping gems/tools available in Ruby

I'm trying to scrape web pages in a Ruby script that I'm working on. The purpose of the project is to show which ETFs and stock mutual funds are most compatible with the value investing philosophy. ...
0
votes
4answers
224 views

Scraping data with Python LXML XPath

I am trying to parse a website for blahblahblah <a href="THIS IS WHAT I WANT" title="NOT THIS">I DONT CARE ABOUT THIS EITHER</a> blahblahblah (there are many of these, and I want ...
2
votes
1answer
191 views

Parse HTML using LXML in Python

I am trying to parse a website for blahblahblah <a href="THIS IS WHAT I WANT" title="NOT THIS">I DONT CARE ABOUT THIS EITHER</a> blahblahblah (there are many of these, and I want ...
1
vote
0answers
143 views

BeautifulSoup does not Parse as Expected

I am using BeautifulSoup 4 for crawling a web site and generated a script that works like a charm. But when I changed computers and tried the script on another one, it suddenly started to give out an ...
0
votes
1answer
139 views

innerhtml equivalent using cssselect in lxml.html [duplicate]

Possible Duplicate: Equivalent to InnerHTML when using lxml.html to parse HTML What is the equivalent of innerHTLML for cssselect using lxml.html with python 2.7? import lxml.html, ...
1
vote
2answers
97 views

lxml truncates text that contains 'less than' character

>>> s = '<div> < 20 </div>' >>> import lxml.html >>> tree = lxml.html.fromstring(s) >>> lxml.etree.tostring(tree) '<div> </div>' Does ...
1
vote
2answers
94 views

Parse broken html page in python

I am trying to parse a broken html page which has a comment inside anther comment and all the famous htmlparsers like beautifulsoup, lxml and HTMLParser are giving syntax errors. Following is the ...
0
votes
0answers
82 views

Python encode type error

I'm using beautifulsoup and lxml to parse a html page. In the beginning I'm using the following code for item in soup.find_all("td", { "class" : re.compile(r"^(s|sb)$") }): data_item = ...
0
votes
1answer
120 views

Python/lxml: How do I capture a row in an HTML table?

For my stock screening tool, I must switch from BeautifulSoup to lxml in my script. After my Python script downloaded the web pages I need to process, BeautifulSoup was able to parse them properly, ...
-1
votes
1answer
454 views

How to use BeautifulSoup and lxml together?

I'm very new in Python. How to use BeautifulSoup and lxml together? It is recommended to use lxml as parser in beautifulsoup website def get_html(): from bs4 import BeautifulSoup ...
0
votes
1answer
180 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> ...
1
vote
1answer
475 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
899 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 ...
1
vote
2answers
280 views

LXML: Cannot import etree

I went to this page and downloaded the tar file : http://pypi.python.org/pypi/lxml/2.3.4#downloads I then copied the lxml folder to my Python26/Lib folder. Now, when i go to the interpreter and type ...
1
vote
1answer
157 views

Python, lxml - access text

I m currently a bit out of ideas, and I really hope that you can give me a hint: Its probably best to explain my question with a small piece of sample code: from lxml import etree from io import ...
5
votes
1answer
519 views

Beautifulsoup4 with lxml vs Beautifulsoup3

I am migrating some parsers from BeautifulSoup3 to BeautifulSoup4 and I thought it would be a good idea to profile how faster it would get considering that lxml is super fast and it's the parser I am ...
1
vote
2answers
709 views

How to do a Python XPath case-insensitive search using lxml?

I am trying to match for country or Country using lower-case function in XPath. translate is kinda messy, so using lower-case and my Python version 2.6.6 has XPath 2.0 support I believe since ...
0
votes
1answer
608 views

How to read website content in python

I am trying to write a program which reads articles (posts) of any website that could range from Blogspot or Wordpress blogs / any other website. As to write code which is compatible with almost all ...
-1
votes
1answer
114 views

How to surround an html element with another tag using lxml in Python

What I want to do is something like this. In my page I have an html document which has this tag <p class="pretty"> Some text </p> And I want to replace it with <blockquote> ...
2
votes
1answer
732 views

Parsing a table with rowspan and colspan

I have a table that I need to parse, specifically it is a school schedule with 4 blocks of time, and 5 blocks of days for every week. I've attempted to parse it, but honestly have not gotten very far ...
0
votes
0answers
230 views

get_element_by_id not working in lxml

I am using lxml to parse an HTML document. I am doing as doc = parse(page).getroot() doc.get_element_by_id('notifications') page has my HTML page and, I have checked the source there does exist an ...
4
votes
4answers
1k views

Which of lxml and libxml2 is better for parsing malformed html in Python?

Which one is better and more useful for malformed html? I cannot find how to use libxml2. Thanks.
1
vote
2answers
937 views

Fetch partial string matched html tag using xpath

The html code is blind and It contains the string "PRICE" in html. That partial string has to be matched with html text.If the text matches(partial match) using xpath.It should return the particular ...
2
votes
3answers
156 views

Parsing HTML data with lxml

I'm a beginner in coding and a friend of mine told me to use BeautifulSoup instead of htmlparser. After running into some problems I got a tip to use lxml instead of BeaytifulSoup because it's 10x ...
2
votes
4answers
557 views

Iteratively parsing HTML (with lxml?)

I'm currently trying to iteratively parse a very large HTML document (I know.. yuck) to reduce the amount of memory used. The problem I'm having is that I'm getting XML syntax errors such as: ...
3
votes
2answers
968 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, ...
0
votes
1answer
452 views

Parse HTML/XML and find locations of elements in original document

Is there a way to get the original location of an element in a document, ie. the start and end character index, when parsing html/xml in Python? I've looked through the lxml documentation and ...
3
votes
4answers
468 views

DOMDocument interface for python lxml

I have written a small application that needs to have access to the DOM representation of the underlying HTML page. Lxml is really great but I have not been able to find such an interface. Does ...
0
votes
1answer
202 views

Using lxml, how can I find and collect all the elements in between specific types of tags?

I have an html document with internal links (i.e., <a name="blah"></a> tags) at the start of certain sections. I want to visit each internal link, and grab all the text contained in all ...
0
votes
1answer
85 views

Parsing html with lxml on python

I have following html code: <div class="test"> "Test" <br> <script type="text/javascript"></script> <a ...
4
votes
1answer
700 views

remove certain attributes from HTML tags

How can I remove certain attributes such as id, style, class, etc. from HTML code? I thought I could use the lxml.html.clean module, but as it turned out I can only remove style attributes with ...
4
votes
4answers
553 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 ...
0
votes
2answers
922 views

Get <img>'s title-attribute with lxml in Python

I want to extract the onel-iner-texts from this website using Python. The messages in HTML look like this: <div class="olh_message"> <p>foobarbaz <img ...
4
votes
2answers
684 views

lxml removes spaces and line breaks in <head>

This small program: from lxml.html import tostring, fromstring e = fromstring(''' <html><head> <link href="/comments.css" rel="stylesheet" ...
2
votes
2answers
249 views

Prevent lxml from touching data in <script> tags

I'm trying to write a python script that modifies the contents of <script> tag in files I'm parsing. I'm using lxml.html (as opposed to BeautifulSoup, etc.) for this due to its speed. The ...
0
votes
2answers
157 views

How can i grab the hyperlinks in web page using python [closed]

I have web page in which i have the structure like <div> <ul> <li class=tree> <a> </a> </li> </ul> </div> NOw i want to grab all those hyperlinks ...
1
vote
1answer
426 views

Editing tree in place while iterating in lxml

I am using lxml to parse html and edit it to produce a new document. Essentially, I'm trying to use it somewhat like the javascript DOM - I know this is not really the intended use, but much of it ...
4
votes
2answers
2k views

How do I remove html entities (and more) using lxml?

I've got an html file that has some text that looks like this (after running it through lxml.html parse, lxml.html clean, and this is the result of etree.tostring(table, pretty_print=True)) ...
1
vote
0answers
418 views

Parsing html using lxml and html5lib, getting “TypeError: insertDoctype() takes exactly 4 arguments (2 given)”

I'm getting the error TypeError: insertDoctype() takes exactly 4 arguments (2 given) when using lxml and html5lib together. It seems that the insertDoctype method in ...
1
vote
1answer
454 views

extracting paragraph in python using lxml

I would like to extract paragraphs in html by python. I used lxml module but it doesn't do exactly what I am looking for. print html.parse(url).xpath('//p')[1].text_content() <span ...
0
votes
1answer
130 views

I'm parsing an HTML using lxml, but I only want a small subset of tags. What's the most efficient way to do this?

I'd prefer not to build the entire tree in memory and just pick the elements I'm looking for.
3
votes
3answers
3k 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&#146;s a ...
1
vote
1answer
310 views

I need help with an lxml statement in python that extracts a meta-tag value

I need help fixing this lxml statement to extract the: http://www.etc../1tru.jpg link in the head section of http://www.yfrog.com/9d1truj #This doesn't work! # <link rel="image_src" ...
2
votes
2answers
960 views

Parsing HTML: lxml error in Python

I am writing a simple script to fetch the big grey table from here. The code I have is the following: import urllib2 from lxml import etree html = ...

1 2