Tagged Questions
BeautifulSoup is a Python package for parsing HTML.
13
votes
2answers
3k views
BeautifulSoup Grab Visible Webpage Text
Basically, I want to use BeautifulSoup to grab strictly the visible text on a webpage... For instance, this webpage is my test case http://www.nytimes.com/2009/12/21/us/21storm.html .. And I mainly ...
13
votes
2answers
2k views
Beautiful Soup cannot find a CSS class if the object has other classes, too
if a page has <div class="class1"> and <p class="class1">, then soup.findAll(True, 'class1') will find them both.
If it has <p class="class1 class2">, though, it will not be found. ...
12
votes
2answers
1k views
Is it worth learning Scrapy?
I'm a big fan of Python and currently I have taken a lot of interest in web-scraping.
At the moment I rely on the elegant combination of Mechanize and Beautiful Soup to automate almost all of my ...
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
5answers
3k views
BeautifulSoup's Python 3 compatibility
Does BeautifulSoup work with Python 3?
If not, how soon will there be a port? Will there be a port at all?
Google doesn't turn up anything to me (Maybe it's 'coz I'm looking for the wrong thing?)
9
votes
1answer
2k views
How do I iterate over the HTML attributes of a Beautiful Soup element?
How do I iterate over the HTML attributes of a Beautiful Soup element?
Like, given:
<foo bar="asdf" blah="123">xyz</foo>
I want "bar" and "blah".
9
votes
9answers
4k views
Scrape a dynamic website
What is the best method to scrape a dynamic website where most of the content is generated by what appears to be ajax requests? I have previous experience with a Mechanize, BeautifulSoup, and python ...
8
votes
5answers
353 views
Parsing a document with BeautifulSoup while not-parsing the contents of <code> tags
I'm writing a blog app with Django. I want to enable comment writers to use some tags (like <strong>, a, et cetera) but disable all others.
In addition, I want to let them put code in ...
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
3answers
6k views
Decoding HTML entities with Python
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out what I am doing wrong.
Take for example:
"U.S. Adviser’s Blunt Memo on Iraq: Time ‘to Go ...
6
votes
2answers
378 views
BeautifulSoup, but for CSS?
BeautifulSoup parses HTML and offers various ways to manipulate and search within HTML. Is there something similar for CSS?
Specifically, I'd like to know if a given HTML text is rendered as bold. ...
6
votes
6answers
3k views
Beautiful Soup and extracting a div and its contents by ID
soup.find("tagName", { "id" : "articlebody" })
Why does this NOT return the <div id="articlebody"> ... </div> tags and stuff in between? It returns nothing. And I know for a fact it ...
6
votes
3answers
2k views
Mechanize and BeautifulSoup for PHP?
I was wondering if there was anything similar like Mechanize or BeautifulSoup for PHP?
6
votes
5answers
1k views
What's the nearest equivalent of Beautiful Soup for Ruby?
I love the Beautiful Soup scraping library in Python. It just works. Is there a close equivalent in Ruby?
5
votes
3answers
117 views
Scraping with BeautifulSoup and multiple paragraphs
I'm trying to scrape a speech from a website using BeautifulSoup. I'm encountering problems, however, since the speech is divided into many different paragraphs. I'm extremely new to programming and ...
5
votes
1answer
539 views
How to make Beautiful Soup output HTML entities?
I'm trying to sanitize and XSS-proof some HTML input from the client. I'm using Python 2.6 with Beautiful Soup. I parse the input, strip all tags and attributes not in a whitelist, and transform the ...
5
votes
3answers
1k views
Is there a faster alternative to BeautifulSoup?
I have a piece of code that basically extracts text from a page. It uses BeautifulSoup to first remove script, style and noscript tags and then find all the text in the page and return it. I don't ...
5
votes
1answer
2k views
Beautiful Soup Unicode encode error
I am trying the following code with a particular HTML file
from BeautifulSoup import BeautifulSoup
import re
import codecs
import sys
f = open('test1.html')
html = f.read()
soup = BeautifulSoup(html)
...
5
votes
2answers
393 views
Is it possible for BeautifulSoup to work in a case-insensitive manner?
I am trying to extract Meta Description for fetched webpages. But here I am facing the problem of case sensitivity of BeautifulSoup.
As some of the pages have <meta name="Description and some ...
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
4answers
5k views
retrieve links from web page using python and beautiful soup
How can I retrieve the links of a webpage and copy the url adress of the links using Python?
5
votes
1answer
2k views
Using BeautifulSoup to find a HTML tag that contains certain text
I'm trying to get the elements in an HTML doc that contain the following pattern of text: #\S{11}
<h2> this is cool #12345678901 </h2>
So, the previous would match by using:
...
5
votes
2answers
3k views
Where can I find some “hello world”-simple Beautiful Soup examples?
I'd like to do a very simple replacement using Beautiful Soup. Let's say I want to visit all A tags in a page and append "?foo" to their href. Can someone post or link to an example of how to do ...
5
votes
6answers
1k views
Looking for a recommendation of a good tutorial on best practices for a web scraping project?
I need to do a fairly extensive project involving web scraping and am considering using Hpricot or Beautiful Soup (i.e. Ruby or Python). Has anyone come across a tutorial that they thought was ...
5
votes
4answers
2k views
HTML Entity Codes to Text
Does anyone know an easy way in Python to convert a string with HTML entity codes (e.g. < &) to a normal string (e.g. < &)?
cgi.escape() will escape strings (poorly), but there ...
5
votes
4answers
2k views
How do you get the text from an HTML 'datacell' using BeautifulSoup
I have been trying to strip out some data from HTML files. I have the logic coded to get the right cells. Now I am struggling to get the actual contents of the 'cell':
here is my htm snip
...
4
votes
2answers
181 views
Login to a website through web-scraping tool in Python
I am using Selenium webdriver in Python for a web-scraping project.
I would like to login by entering the login details and then click the submit button.
I am able to enter the Username and ...
4
votes
1answer
119 views
BeautifulSoup: How to include the encoding on output?
I would like to include the encoding tag in an XML document using BeautifulSoup.BeautifulStoneSoup, but I'm not sure how!
<?xml version="1.0" encoding="UTF-8"?>
<mytag>stuff</mytag>
...
4
votes
4answers
238 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
3answers
159 views
Where can I find a lax [X]HTML parsing library in C++?
My friend and I are trying to find a native solution for parsing HTML in C++, similar to what Beautiful Soup does in Python.
As of right now, we use an external Python script to download and parse ...
4
votes
2answers
247 views
Speedier/less resource-demolishing way to strip html from large files than BeautifulSoup? Or, a better way to use BeautifulSoup?
Currently I am having trouble typing this because, according to top, my processor is at 100% and my memory is at 85.7%, all being taken up by python.
Why? Because I had it go through a 250-meg file ...
4
votes
3answers
627 views
BeautifulSoup nested tags
I'm trying to parse an XML with Beautifulsoup, but hit a brick wall when trying to use the "recursive" attribute with findall()
I have a pretty odd xml format shown below:
<?xml ...
4
votes
1answer
181 views
using BeautifulSoup to insert an element before closing body
What is the most efficient way to insert an element as last one in the body of an HTML page?
4
votes
3answers
126 views
Help interpreting code snippet
I am very new to python and beautifulsoup.
In the for statement, what is incident? Is it a class, type, variable?
The line following the for.. totally lost.
Can someone please explain this code to ...
4
votes
2answers
155 views
Massage with BeatifulSoup or clean with Regex
Could someone tell me whats a better way to clean up bad HTML so BeautifulSoup can handle it - should one use the massage methods of BeautifulSoup or clean it up using regular expressions?
Thanks.
4
votes
7answers
2k views
Screen scraping: getting around “HTTP Error 403: request disallowed by robots.txt”
Is there a way to get around the following?
httperror_seek_wrapper: HTTP Error 403: request disallowed by robots.txt
Is the only way around this to contact the site-owner (barnesandnoble.com).. i'm ...
4
votes
2answers
629 views
How do I make BeautifulSoup parse the contents of textarea tags as HTML?
Before 3.0.5, BeautifulSoup used to treat the contents of <textarea> as HTML. It now treats it as text. The document I am parsing has HTML inside the textarea tags, and I am trying to process it.
...
4
votes
2answers
383 views
Python beautiful soup arguments
I have this code that fetches some text from a page using BeautifulSoup
soup= BeautifulSoup(html)
body = soup.find('div' , {'id':'body'})
print body
I would like to make this as a reusable function ...
4
votes
1answer
297 views
How do I remove a column from a table in beautifulsoup (Python)
I have an html table, and I would like to remove a column. What is the easiest way to do this with BeautifulSoup or any other python library?
4
votes
1answer
170 views
“html agility pack” like module for perl
Can anyone recommend a good module like "html agility pack"(.net) or "Beautiful Soup" for perl?
Thanks in advance!
4
votes
4answers
4k views
Remove a tag using BeautifulSoup but keep its contents
Currently I have code that does something like this:
soup = BeautifulSoup(value)
for tag in soup.findAll(True):
if tag.name not in VALID_TAGS:
tag.extract()
...
4
votes
2answers
1k views
BeautifulSoup - easy way to to obtain HTML-free contents
I'm using this code to find all interesting links in a page:
soup.findAll('a', href=re.compile('^notizia.php\?idn=\d+'))
And it does its job pretty well. Unfortunately inside that a tag there are ...
4
votes
2answers
2k views
BeautifulSoup gives me unicode+html symbols, rather than straight up unicode. Is this a bug or misunderstanding?
I'm using BeautifulSoup to scrape a website. The website's page renders fine in my browser:
Oxfam International’s report entitled “Offside!
...
4
votes
4answers
2k views
Decomposing HTML to link text and target
Given an HTML link like
<a href="urltxt" class="someclass" close="true">texttxt</a>
how can I isolate the url and the text?
Updates
I'm using Beautiful Soup, and am unable to figure ...
3
votes
3answers
29 views
Is there InnerText equivalent in BeautifulSoup / python?
With the code below
soup = BeautifulSoup(page.read(), fromEncoding="utf-8")
result = soup.find('div', {'class' :'flagPageTitle'})
I get the following html:
<div ...
3
votes
3answers
31 views
Extracting tag content based on content value using BeautifulSoup
I have a Html document of the following format.
<p> 1. Content of the paragraph <i> in italic </i> but not <b> strong </b> <a ...
3
votes
3answers
92 views
Parsing html with Python
I'm using BeautifulSoup to extract some data from a search result from this website http://www.cpso.on.ca/docsearch/default.aspx
Here's a sample of the HTML code that's been .prettify()
<tr>
...
3
votes
2answers
86 views
Beautiful Soup raises UnicodeEncodeError “ordinal not in range(128)”
I am trying to parse arbitrary documents download from the wild web, and yes, I have no control of their content.
Since Beautiful Soup won't choke if you give it bad markup... I wonder why does it ...
3
votes
1answer
71 views
How do I get at HTML attributes in nested tags with Mechanize in Python?
all. I'm having trouble getting at links in nested HTML with Mechanize in Python. Here's my current code (I've tried everything; this is just the latest copy, which doesn't work correctly) (and pardon ...