BeautifulSoup is a Python package for parsing HTML. The latest version of this package is version 4, which is to be imported as bs4. It's fully compatible with previous version.
35
votes
4answers
7k 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 ...
27
votes
2answers
9k 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 ...
24
votes
5answers
8k 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 ...
22
votes
2answers
27k views
UnicodeEncodeError: 'ascii' codec can't encode character u'\xa0' in position 20: ordinal not in range(128)
I'm having problems dealing with unicode characters from text fetched from different web page (on different sites). I am using BeautifulSoup.
The problem is that the error is not always reproducable ...
19
votes
2answers
5k 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. ...
14
votes
5answers
17k 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?
14
votes
7answers
12k 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 ...
12
votes
1answer
3k 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".
12
votes
3answers
4k views
Mechanize and BeautifulSoup for PHP?
I was wondering if there was anything similar like Mechanize or BeautifulSoup for PHP?
11
votes
6answers
18k views
Downloading a picture via urllib and python
So I'm trying to make a Python script that downloads webcomics and puts them in a folder on my desktop. I've found a few similar programs on here that do something similar, but nothing quite like ...
11
votes
3answers
10k 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 ...
11
votes
9answers
5k 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 ...
11
votes
2answers
7k 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:
...
11
votes
5answers
4k 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?)
10
votes
7answers
6k 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 ...
10
votes
5answers
6k 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, ...
9
votes
6answers
11k 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()
...
9
votes
3answers
5k views
Handling “class” attribute in Beautifulsoup
I'm having trouble parsing html elements with "class" attribute using Beautifulsoup. The code looks like this
soup = BeautifulSoup(sdata)
mydivs = soup.findAll('div')
for div in mydivs:
if ...
9
votes
5answers
2k 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?
9
votes
5answers
594 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 ...
8
votes
1answer
7k views
ImportError: No module named BeautifulSoup
I have installed BeautifulSoup using easy_install and trying to run following script
from BeautifulSoup import BeautifulSoup
import re
doc = ['<html><head><title>Page ...
8
votes
1answer
7k views
BeautifulSoup: just get inside of a tag, no matter how many enclosing tags there are
I'm trying to scrape all the inner html from the <p> elements in a web page using BeautifulSoup. There are internal tags, but I don't care, I just want to get the internal text.
For example, ...
8
votes
3answers
8k views
Extracting an attribute value with beautifulsoup
I am trying to extract the content of a single "value" attribute in a specific "input" tag on a webpage. I use the following code:
import urllib
f = urllib.urlopen("http://58.68.130.147")
s = ...
8
votes
3answers
2k views
Unicode error when outputting python script output to file
This is the code:
print '"' + title.decode('utf-8', errors='ignore') + '",' \
' "' + title.decode('utf-8', errors='ignore') + '", ' \
'"' + desc.decode('utf-8', errors='ignore') + '")'
...
7
votes
4answers
5k 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 ...
7
votes
2answers
3k 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 ...
7
votes
1answer
10k views
BeautifulSoup HTML table parsing
I am trying to parse information (html tables) from this site: http://www.511virginia.org/RoadConditions.aspx?j=All&r=1
Currently I am using BeautifulSoup and the code I have looks like this
...
7
votes
3answers
839 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 ...
7
votes
4answers
3k views
How can I translate this XPath expression to BeautifulSoup?
In answer to a previous question, several people suggested that I use BeautifulSoup for my project. I've been struggling with their documentation and I just cannot parse it. Can somebody point me to ...
7
votes
3answers
2k views
Matching id's in BeautifulSoup
I'm using BeautifulSoup - python module. I have to find any reference to the div's with id like: 'post-#'.
For example:
<div id="post-45">...</div>
<div ...
7
votes
2answers
163 views
Custom indent width for BeautifulSoup .prettify()
Is there any way to define custom indent width for .prettify() function? From what I can get from it's source -
def prettify(self, encoding=None, formatter="minimal"):
if encoding is None:
...
6
votes
3answers
5k views
Can I remove script tags with BeautifulSoup?
Can script tags and all of their contents be removed from HTML with BeautifulSoup, or do I have to use Regular Expressions or something else?
6
votes
2answers
6k 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 ...
6
votes
3answers
1k 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 ...
6
votes
1answer
2k views
Get data from the meta tags using BeautifulSoup
I am trying to read the description from the meta tag and this is what I used
soup.findAll(name="description")
but it does not work, however, the code below works just fine
...
6
votes
2answers
398 views
Find nearest link with BeautifullSoup (python)
I am doing a small project where I extract occurences of political leaders in newspapers. Sometimes a politician will be mentioned, and there is neither a parent or child with a link. (due I guess to ...
6
votes
3answers
4k views
BeautifulSoup: get contents[] as a single string
Anyone know an elegant way to get the entire contents of a soup object as a single string?
At the moment I'm getting contents, which is of course a list, and then iterating over it:
notices = ...
6
votes
6answers
859 views
how to login to Yahoo programatically from an ubuntu server
I would like to login to my yahoo account from a script running on an ubuntu server. I have tried to use python with mechanize, but there is a flaw in my plan.
This is the code I have at the moment.
...
6
votes
4answers
3k 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 ...
6
votes
1answer
899 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 ...
6
votes
2answers
1k 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. ...
5
votes
6answers
2k 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
4k 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 ...
5
votes
2answers
3k 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 ...
5
votes
2answers
3k 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!
...
5
votes
2answers
676 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 ...
5
votes
2answers
2k views
Python library to do jQuery-like text extraction?
I've got html that contains entries like this:
<div class="entry">
<h3 class="foo">
<a href="http://www.example.com/blog-entry-slug"
rel="bookmark">Blog Entry</a>
...
5
votes
4answers
3k 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
...
5
votes
1answer
5k views
BeautifulSoup getting href
I am new to BeautifulSoup and find that I am missing something basic about navigating. I have the following soup:
<a href="some_url">next</a>
<span class="class">...</span>
...
5
votes
1answer
3k views
Using urllib and BeautifulSoup to retrieve info from web with Python
I can get the html page using urllib, and use BeautifulSoup to parse the html page, and it looks like that I have to generate file to be read from BeautifulSoup.
import urllib ...
