active questions tagged beautifulsoup - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T14:30:52Zhttp://stackoverflow.com/feeds/tag/beautifulsouphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1796725/python-and-beautifulsoup-not-finding-a3Python and BeautifulSoup, not finding 'a'pns2009-11-25T12:51:12Z2009-11-25T17:12:49Z
<p>Hey,</p>
<p>Here's a piece of HTML code (from delicious):</p>
<pre><code><h4>
<a rel="nofollow" class="taggedlink " href="http://imfy.us/" >Generate Secure Links with Anonymous Referers &amp; Anti-Bot Protection</a>
<span class="saverem">
<em class="bookmark-actions">
<strong><a class="inlinesave action" href="/save?url=http%3A%2F%2Fimfy.us%2F&amp;title=Generate%20Secure%20Links%20with%20Anonymous%20Referers%20%26%20Anti-Bot%20Protection&amp;jump=%2Fdux&amp;key=fFS4QzJW2lBf4gAtcrbuekRQfTY-&amp;original_user=dux&amp;copyuser=dux&amp;copytags=web+apps+url+security+generator+shortener+anonymous+links">SAVE</a></strong>
</em>
</span>
</h4>
</code></pre>
<p>I'm trying to find all the links where class="inlinesave action". Here's the code:</p>
<pre><code>sock = urllib2.urlopen('http://delicious.com/theuser')
html = sock.read()
soup = BeautifulSoup(html)
tags = soup.findAll('a', attrs={'class':'inlinesave action'})
print len(tags)
</code></pre>
<p>But it doesn't find anything!</p>
<p>Any thoughts?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1563165/what-pure-python-library-should-i-use-to-scrape-a-website0What pure Python library should I use to scrape a website?MStodd2009-10-13T21:58:03Z2009-11-25T00:18:51Z
<p>I currently have some Ruby code used to scrape some websites. I was using Ruby because at the time I was using Ruby on Rails for a site, and it just made sense.</p>
<p>Now I'm trying to port this over to Google App Engine, and keep getting stuck.</p>
<p>I've ported Python Mechanize to work with Google App Engine, but it doesn't support DOM inspection with XPATH.</p>
<p>I've tried the built-in ElementTree, but it choked on the first HTML blob I gave it when it ran into '&mdash'.</p>
<p>Do I keep trying to hack ElementTree in there, or do I try to use something else?</p>
<p>thanks,
Mark</p>
http://stackoverflow.com/questions/285938/decomposing-html-to-link-text-and-target4Decomposing HTML to link text and targetsundeep2008-11-13T00:38:56Z2009-11-22T09:20:38Z
<p>Given an HTML link like</p>
<pre><code><a href="urltxt" class="someclass" close="true">texttxt</a>
</code></pre>
<p>how can I isolate the url and the text? </p>
<p><strong>Updates</strong></p>
<p>I'm using Beautiful Soup, and am unable to figure out how to do that. </p>
<p>I did </p>
<pre><code>soup = BeautifulSoup.BeautifulSoup(urllib.urlopen(url))
links = soup.findAll('a')
for link in links:
print "link content:", link.content," and attr:",link.attrs
</code></pre>
<p>i get </p>
<pre><code>*link content: None and attr: [(u'href', u'_redirectGeneric.asp?genericURL=/root /support.asp')]* ...
...
</code></pre>
<p>Why am i missing the content? </p>
<p>edit: elaborated on 'stuck' as advised :)</p>
http://stackoverflow.com/questions/1765848/remove-a-tag-using-beautifulsoup-but-keeps-its-contents0Remove a tag using BeautifulSoup but keeps its contentsJason Christa2009-11-19T19:19:28Z2009-11-20T03:43:13Z
<p>Currently I have code that does something like this:</p>
<pre><code>soup = BeautifulSoup(value)
for tag in soup.findAll(True):
if tag.name not in VALID_TAGS:
tag.extract()
soup.renderContents()
</code></pre>
<p>Except I don't want to throw away the contents inside the invalid tag. How do I get rid of the tag but keep the contents inside when calling soup.renderContents()?</p>
http://stackoverflow.com/questions/1752481/beautifulsoup-findall-in-perl0BeautifulSoup.findAll() in perlaaronstacy2009-11-17T23:00:43Z2009-11-18T03:32:59Z
<p>I need to pull out all of the "NodeGroup" elements out of an XML file:</p>
<pre><code><Database>
<Get>
<Data>
<NodeGroups>
<NodeGroup>
<AssociateNode ConnID="6748763_2" />
<AssociateNode ConnID="6748763_1" />
<Data DataType="Capacity">2</Data>
<Name>Alpha</Name>
</NodeGroup>
<NodeGroup>
<AssociateNode ConnID="6748763_23" />
<AssociateNode ConnID="6748763_7" />
<Data DataType="Capacity">2</Data>
<Name>Charlie</Name>
</NodeGroup>
<NodeGroup>
<AssociateNode ConnID="6748763_98" />
<AssociateNode ConnID="6748763_12" />
<Data DataType="Capacity">2</Data>
<Name>Papa</Name>
</NodeGroup>
<NodeGroup>
<AssociateNode ConnID="6748763_8" />
<AssociateNode ConnID="6748763_45" />
<Data DataType="Capacity">2</Data>
<Name>Yankee</Name>
</NodeGroup>
</NodeGroups>
<System>
...
</System>
</Data>
</Get>
</Database>
</code></pre>
<p>If I could use python and BeautifulSoup, I would parse the xml and call something like:</p>
<pre><code>node_group_array = soup.findAll("nodegroups")
</code></pre>
<p>But I am using Perl and Perl's XML modules, so I used XML::Simple's XMLIn, recursively walking through each hash key, checking if the value was a hash, checking if it was the "NodeGroup" hash, etc. </p>
<p>I would think that there's something like soup.findAll() in one of Perl's XML modules, but I can't find it. How do I do "soup.findAll('nodegroups')" in Perl?</p>
http://stackoverflow.com/questions/1752662/beautifulsoup-easy-way-to-to-obtain-html-free-contents3BeautifulSoup - easy way to to obtain HTML-free contents.Andrea Ambu2009-11-17T23:38:20Z2009-11-18T00:45:42Z
<p>I'm using this code to find all interesting links in a page:</p>
<pre><code>soup.findAll('a', href=re.compile('^notizia.php\?idn=\d+'))
</code></pre>
<p>And it does its job pretty well. Unfortunately inside that <strong>a</strong> tag there are a lot of nested tags, like <strong>font</strong>, <strong>b</strong> and different things... I'd like to get just the text content, without any other html tag.</p>
<p>Example of link:</p>
<pre><code><A HREF="notizia.php?idn=1134" OnMouseOver="verde();" OnMouseOut="blu();"><FONT CLASS="v12"><B>03-11-2009:&nbsp;&nbsp;<font color=green>CCS Ingegneria Elettronica-Sportello studenti ed orientamento</B></FONT></A>
</code></pre>
<p>Of course it's ugly (and the markup is not always the same!) and I'd like to get:</p>
<pre><code>03-11-2009: CCS Ingegneria Elettronica-Sportello studenti ed orientamento
</code></pre>
<p>In the documentation it says to use <code>text=True</code> in findAll method, but it will ignore my regex. Why? How can I solve that?</p>
http://stackoverflow.com/questions/1732956/making-beautifulsoup-ignore-contents-inside-script-tags0Making BeautifulSoup ignore contents inside script tagsalphageek2009-11-14T01:48:27Z2009-11-14T11:09:28Z
<p>I have been trying to get BeautifulSoup (3.1.0.1)to parse a html page that has a lot of javascript that generates html inside tags.
One example fragment looks like this :</p>
<pre><code><html><head><body><div>
<script type='text/javascript'>
if(ii > 0) {
html += '<span id="hoverMenuPosSepId" class="hoverMenuPosSep">|</span>'
}
html +=
'<div class="hoverMenuPos" id="hoverMenuPosId" onMouseOver=\"menuOver_3821();\" ' +
'onMouseOut=\"menuOut_3821();\">';
if (children[ii].uri == location.pathname) {
html += '<a class="hiHover" href="' + children[ii].uri + '" ' + onClick + '>';
} else {
html += '<a class="hover" href="' + children[ii].uri + '" ' + onClick + '>';
}
html += children[ii].name + '</a></div>';
}
}
hp = document.getElementById("hoverpopup_3821");
hp.style.top = (parseInt(hoveritem.offsetTop) + parseInt(hoveritem.offsetHeight)) + "px";
hp.style.visibility = "Visible";
hp.innerHTML = html;
}
return false;
}
function menuOut_3821() {
timeOn_3821 = setTimeout("showSelected_3821()", 1000)
}
var timeOn_3821 = null;
function menuOver_3821() {
clearTimeout(timeOn_3821)
}
function showSelected_3821() {
showChildrenMenu_3821(
document.getElementById("flatMenuItemAnchor" + selectedPageId), selectedPageId);
}
</script>
</body>
</html>
</code></pre>
<p>BeautifulSoup doesn't seem to be able to deal with this and is complaning about "malformed start tag" around the onMouseOver=<strong>\"</strong>menuOver_3821();\".
It seems to try parsing the xml that is generated by javascript inside the script block ?!?</p>
<p>Any ideas how to make BeautifulSoup ignores the script tags content ?</p>
<p>I have seen other suggestion of using lxml but can't since it has to run on Google AppEngine.</p>
http://stackoverflow.com/questions/684629/looking-for-a-recommendation-of-a-good-tutorial-on-best-practices-for-a-web-scrap3Looking for a recommendation of a good tutorial on best practices for a web scraping project?in bruges2009-03-26T05:31:24Z2009-11-12T02:05:50Z
<p>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 particularly good on this subject that would help me start the project off on the right foot?</p>
http://stackoverflow.com/questions/640068/whats-the-nearest-equivalent-of-beautiful-soup-for-ruby4What's the nearest equivalent of Beautiful Soup for Ruby?Tim2009-03-12T19:10:29Z2009-11-11T21:47:07Z
<p>I love the Beautiful Soup scraping library in Python. It just works. Is there a close equivalent in Ruby? </p>
http://stackoverflow.com/questions/1698627/beautifulsoup-is-omitting-body-of-page0BeautifulSoup is omitting body of pagegmoorevt2009-11-09T01:12:02Z2009-11-09T01:50:52Z
<p>BeautifulSoup newbe... Need help</p>
<p>Here is the code sample...</p>
<pre><code>from mechanize import Browser
from BeautifulSoup import BeautifulSoup
mec = Browser()
#url1 = "http://www.wines.com/catalog/index.php?cPath=21"
url2 = "http://www.wines.com/catalog/product_info.php?products_id=4866"
page = mec.open(url2)
html = page.read()
soup = BeautifulSoup(html)
print soup.prettify()
</code></pre>
<p>When I use url1 I get a nice dump of the page. When I use url2(the one I need). I get output without the body.</p>
<pre><code><!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html dir="LTR" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>
2005 Jordan Cabernet Sauvignon Sonoma 2005
</title>
</head>
</html>
</code></pre>
<p>Any ideas? </p>
http://stackoverflow.com/questions/1697774/matching-tags-in-beautifulsoup1Matching tags in BeautifulSoupdb902009-11-08T20:12:59Z2009-11-08T20:27:24Z
<p>I'm trying to count the number of tags in the 'soup' from a beautifulsoup result. I'd like to use a regular expression but am having trouble.
The code Ive tried is as follows:</p>
<pre><code>reg_exp_tag = re.compile("<[^>*>")
tags = re.findall(reg_exp_tag, soup(cast as a string))
</code></pre>
<p>but <code>re</code> will not allow <code>reg_exp_tag</code>, giving an unexpected end of regular expression error.</p>
<p>Any help would be much appreciated!</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1694061/using-md5-on-beautifulsoup-result1Using md5 on BeautifulSoup resultdb902009-11-07T19:01:52Z2009-11-07T19:03:45Z
<p>Im trying to use the md5 algorithm on web pages to avoid seeing duplicates. Is there an easy way to convert the result from beautifulsoup into a string which is digestible by md5?</p>
<p>Many thanks</p>
http://stackoverflow.com/questions/1684120/beautifulsoup-extracting-attribute-values1BeautifulSoup - extracting attribute valuesdb902009-11-05T22:32:52Z2009-11-06T00:06:37Z
<p>If Beautiful Soup gives me an anchor tag like this:</p>
<pre><code><a class="blah blah" id="blah blah" href="link.html"></a>
</code></pre>
<p>How would I retrieve the value of the <code>href</code> attribute?</p>
http://stackoverflow.com/questions/1661310/beautifulsoup-with-jython2BeautifulSoup with Jythongooli2009-11-02T13:22:53Z2009-11-03T06:11:54Z
<p>I just tried to run BeautifulSoup (3.1.0.1) with Jython (2.5.1) and I was amazed to see how much slower it was than CPython. Parsing a page (<a href="http://www.fixprotocol.org/specifications/fields/5000-5999" rel="nofollow">http://www.fixprotocol.org/specifications/fields/5000-5999</a>) with CPython took just under a second (0.844 second to be exact). With Jython it took 564 seconds - almost 700 times as much.</p>
<p>Can anyone confirm this result? It's doesn't seem reasonable for Jython to run 700 times slower than CPython. Perhaps something is wrong with my setup.</p>
<p>[Edit] Here's the code I used to test this (naturally I downloaded the above mentioned HTML file):</p>
<pre><code>import time
from BeautifulSoup import BeautifulSoup
data = open("fix-5000-5999.html").read()
start = time.time()
soup = BeautifulSoup(data)
print time.time() - start
</code></pre>
http://stackoverflow.com/questions/1642262/how-do-you-elimate-all-html-tags-xml-tags-with-beautifulsoup0How do you elimate all HTML tags/XML tags with BeautifulSoup? alex2009-10-29T08:19:31Z2009-10-29T08:49:26Z
<p>It doesn't say it anywhere in the documentation, it only shows how to parse the tags.</p>
http://stackoverflow.com/questions/1611852/pamie-and-python-win32-question1Pamie and python-win32 questionpaul2009-10-23T07:23:45Z2009-10-23T08:24:38Z
<p>hello,
currently im making some web scrap script.
and i was choice PAMIE to use my script.
actually im new to python and programming.
so i have no idea ,if i use PAMIE,it really helpful to make script to relate with win32-python.
ok my problem is ,
while im making script,i was encounter two probelm.
first , i want to let work my script work together Beautifulsoup and PAMIE.
or it also ok..if can work native internet explorer interface together.</p>
<p>but it not work for me.
im using PAMIE3 version.even if i changed to pamie 2b version ,i couldn't make it working.</p>
<p>my second problem is,while im making script,i think sometime i need normal IE interface.
is it possible to change PAMIE's IE interface to just normal IE interface(InternetExplorer.Application)?
i don't want to open new IE window to work with normal IE interface,want to continue work with current PAMIE's IE windows.
sorry for my bad english
Paul</p>
http://stackoverflow.com/questions/1571699/select-specific-child-elements-with-beautifulsoup1Select specific child elements with BeautifulSoupdriax2009-10-15T11:12:42Z2009-10-15T11:34:56Z
<p>I'm reading up on BeautifulSoup to screen-scrape some pretty heavy html pages. Going through the documentation of BeautifulSoup I can't seem to find a easy way to select child elements.</p>
<p>Given the html:</p>
<pre><code><div id="top">
<div>Content</div>
<div>
<div>Content I Want</div>
</div>
</div>
</code></pre>
<p>I want a easy way to to get the "Content I Want" given I have the object top. Coming to BeautifulSoup I thought it would be easy, and something like topobj.nodes[1].nodes[0].string. Instead I only see variables and functions that also return the elements together with text nodes, comments and so on. </p>
<p>Am I missing something? Or do I really need to resort to a long form using .find() or even worse using list comphrensions on the .contents variable.</p>
<p>The reason is that I don't trust the whitespace of the webpage to be the same so I want to ignore it and only traverse on elements.</p>
http://stackoverflow.com/questions/1567402/why-is-beautifulsoup-modifying-my-self-closing-elements2Why is BeautifulSoup modifying my self-closing elements?Geo2009-10-14T16:19:14Z2009-10-14T16:22:13Z
<p>This is the script I have:</p>
<pre><code>import BeautifulSoup
if __name__ == "__main__":
data = """
<root>
<obj id="3"/>
<obj id="5"/>
<obj id="3"/>
</root>
"""
soup = BeautifulSoup.BeautifulStoneSoup(data)
print soup
</code></pre>
<p>When ran, this prints:</p>
<pre><code><root>
<obj id="3"></obj>
<obj id="5"></obj>
<obj id="3"></obj>
</root>
</code></pre>
<p>I'd like it to keep the same structure. How can I do that?</p>
http://stackoverflow.com/questions/1501690/parsing-out-data-using-beautifulsoup-in-python1Parsing out data using BeautifulSoup in Pythonrohanbk2009-10-01T02:59:32Z2009-10-01T03:36:20Z
<p>I am attempting to use BeautifulSoup to parse through a DOM tree and extract the names of authors. Below is a snippet of HTML to show the structure of the code I'm going to scrape. </p>
<pre><code><html>
<body>
<div class="list-authors">
<span class="descriptor">Authors:</span>
<a href="/find/astro-ph/1/au:+Lin_D/0/1/0/all/0/1">Dacheng Lin</a>,
<a href="/find/astro-ph/1/au:+Remillard_R/0/1/0/all/0/1">Ronald A. Remillard</a>,
<a href="/find/astro-ph/1/au:+Homan_J/0/1/0/all/0/1">Jeroen Homan</a>
</div>
<div class="list-authors">
<span class="descriptor">Authors:</span>
<a href="/find/astro-ph/1/au:+Kosovichev_A/0/1/0/all/0/1">A.G. Kosovichev</a>
</div>
<!--There are many other div tags with this structure-->
</body>
</html>
</code></pre>
<p>My point of confusion is that when I do soup.find, it finds the first occurrence of the div tag that I'm searching for. After that, I search for all 'a' link tags. At this stage, how do I extract the authors names from each of the link tags and print them out? Is there a way to do it using BeautifulSoup or do I need to use Regex? How do I continue iterating over every other other div tag and extract the authors names?</p>
<pre><code>import re
import urllib2,sys
from BeautifulSoup import BeautifulSoup, NavigableString
html = urllib2.urlopen(address).read()
soup = BeautifulSoup(html)
try:
authordiv = soup.find('div', attrs={'class': 'list-authors'})
links=tds.findAll('a')
for link in links:
print ''.join(link[0].contents)
#Iterate through entire page and print authors
except IOError:
print 'IO error'
</code></pre>
http://stackoverflow.com/questions/1384470/lxml-equivalent-to-beautifulsoup-or-syntax3lxml equivalent to BeautifulSoup "OR" syntax?erikcw2009-09-05T23:04:18Z2009-09-18T13:29:49Z
<p>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:</p>
<pre><code>soup.find('a', {'class': ['current zzt', 'zzt']})
</code></pre>
<p>Basically I want to find all of the "a" tags in the document that have a class attribute of either "current zzt" or "zzt". BeautifulSoup allows one to pass in a list, dictionary, or even a regular express to perform the match.</p>
<p>What is the lxml equivalent?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1391657/python-web-scraping-involving-html-tags-with-attributes1Python web scraping involving HTML tags with attributesrohanbk2009-09-08T02:23:25Z2009-09-08T03:31:52Z
<p>I'm trying to make a web scraper that will parse a web-page of publications and extract the authors. The skeletal structure of the web-page is the following:</p>
<pre><code><html>
<body>
<div id="container">
<div id="contents">
<table>
<tbody>
<tr>
<td class="author">####I want whatever is located here ###</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>
</code></pre>
<p>I've been trying to use BeautifulSoup and lxml thus far to accomplish this task, but I'm not sure how to handle the two div tags and td tag because they have attributes. In addition to this, I'm not sure whether I should rely more on BeautifulSoup or lxml or a combination of both. What should I do?</p>
<p>At the moment, my code looks like what is below:</p>
<pre><code> import re
import urllib2,sys
import lxml
from lxml import etree
from lxml.html.soupparser import fromstring
from lxml.etree import tostring
from lxml.cssselect import CSSSelector
from BeautifulSoup import BeautifulSoup, NavigableString
address='http://www.example.com/'
html = urllib2.urlopen(address).read()
soup = BeautifulSoup(html)
html=soup.prettify()
html=html.replace('&nbsp', '&#160')
html=html.replace('&iacute','&#237')
root=fromstring(html)
</code></pre>
<p>I realize that a lot of the import statements may be redundant, but I just copied whatever I currently had in more source file.</p>
<p>EDIT: I suppose that I didn't make this quite clear, but I have multiple tags in page that I want to scrape. </p>
http://stackoverflow.com/questions/1320591/urlopen-beautifulsoup-and-utf-8-issue0urlopen, BeautifulSoup and UTF-8 IssueRyan Rosario2009-08-24T05:17:24Z2009-08-24T17:53:49Z
<p>I am just trying to retrieve a web page, but somehow a foreign character is embedded in the HTML file. This character is not visible when I use "View Source."</p>
<pre><code>isbn = 9780141187983
url = "http://search.barnesandnoble.com/booksearch/isbninquiry.asp?ean=%s" % isbn
opener = urllib2.build_opener()
url_opener = opener.open(url)
page = url_opener.read()
html = BeautifulSoup(page)
html #This line causes error.
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'ascii' codec can't encode character u'\xa0' in position 21555: ordinal not in range(128)
</code></pre>
<p>I also tried...</p>
<pre><code>html = BeautifulSoup(page.encode('utf-8'))
</code></pre>
<p>How can I read this web page into BeautifulSoup without getting this error?</p>
http://stackoverflow.com/questions/1263800/mechanize-and-beautifulsoup-for-php3Mechanize and BeautifulSoup for PHP?eyze2009-08-12T01:24:42Z2009-08-12T05:13:48Z
<p>I was wondering if there was anything similar like Mechanize or BeautifulSoup for PHP?</p>
http://stackoverflow.com/questions/1263088/web-scraping-sites-that-require-javascript-support0Web scraping sites that require javascript support [closed]Lin2009-08-11T21:38:53Z2009-08-11T21:43:23Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/857515/screen-scraping-from-a-web-page-with-a-lot-of-javascript">Screen Scraping from a web page with a lot of Javascript</a> </p>
</blockquote>
<p>I just want to do tasks such as form entry and web scraping, but on sites that require javascript support. And I also need to enter forms, scrape, and so on in the same session. Ideally, I'd like a way to control a web browser from the command line. And I also want to only use Linux for all this, so I can't use .NET. </p>
<p>I found the webbrowser library for Python, but its capabilities look very limited. If that could interface with mechanize and BeautifulSoup, that'd be amazing. Any suggestions? Thanks!</p>
http://stackoverflow.com/questions/1242755/beautiful-soup-cannot-find-a-css-class-if-the-object-has-other-classes-too2Beautiful Soup cannot find a CSS class if the object has other classes, tooendolith2009-08-07T03:34:19Z2009-08-07T15:18:07Z
<p>if a page has <code><div class="class1"></code> and <code><p class="class1"></code>, then <code>soup.findAll(True, 'class1')</code> will find them both.</p>
<p>If it has <code><p class="class1 class2"></code>, though, it will not be found. How do I find all objects with a certain class, regardless of whether they have other classes, too?</p>
http://stackoverflow.com/questions/459552/beautifulsoup-3-1-parser-breaks-far-too-easily3BeautifulSoup 3.1 parser breaks far too easilyMat2009-01-19T23:07:02Z2009-08-03T15:40:41Z
<p><em>I was having trouble parsing some dodgy HTML with BeautifulSoup. Turns out that the HTMLParser used in newer versions is less tolerant than the SGMLParser used previously.</em></p>
<p><hr /></p>
<p>Does BeautifulSoup have some kind of debug mode? I'm trying to figure out how to stop it borking on some nasty HTML I'm loading from a crabby website:</p>
<pre><code><HTML>
<HEAD>
<TITLE>Title</TITLE>
<HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
</HEAD>
<BODY>
...
...
</BODY>
</HTML>
</code></pre>
<p>BeautifulSoup gives up after the <code><HTTP-EQUIV...></code> tag</p>
<pre><code>In [1]: print BeautifulSoup(c).prettify()
<html>
<head>
<title>
Title
</title>
</head>
</html>
</code></pre>
<p>The problem is clearly the HTTP-EQUIV tag, which is really a <em>very</em> malformed <code><META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"></code> tag. Evidently, I need to specify this as self-closing, but no matter what I specify I can't fix it:</p>
<pre><code>In [2]: print BeautifulSoup(c,selfClosingTags=['http-equiv',
'http-equiv="pragma"']).prettify()
<html>
<head>
<title>
Title
</title>
</head>
</html>
</code></pre>
<p>Is there a verbose debug mode in which BeautifulSoup will tell me what it is doing, so I can figure out what it is treating as the tag name in this case?</p>
http://stackoverflow.com/questions/601166/issues-with-beautifulsoup-parsing0Issues with BeautifulSoup parsingMartin2009-03-02T03:13:21Z2009-08-03T15:39:32Z
<p>I am trying to parse an html page with BeautifulSoup, but it appears that BeautifulSoup doesn't like the html or that page at all. When I run the code below, the method prettify() returns me only the script block of the page (see below). Does anybody has an idea why it happens? </p>
<pre><code>import urllib2
from BeautifulSoup import BeautifulSoup
url = "http://www.futureshop.ca/catalog/subclass.asp?catid=10607&mfr=&logon=&langid=FR&sort=0&page=1"
html = "".join(urllib2.urlopen(url).readlines())
print "-- HTML ------------------------------------------"
print html
print "-- BeautifulSoup ---------------------------------"
print BeautifulSoup(html).prettify()
</code></pre>
<p>The is the output produced by BeautifulSoup.</p>
<pre><code>-- BeautifulSoup ---------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script language="JavaScript">
<!--
function highlight(img) {
document[img].src = "/marketing/sony/images/en/" + img + "_on.gif";
}
function unhighlight(img) {
document[img].src = "/marketing/sony/images/en/" + img + "_off.gif";
}
//-->
</script>
</code></pre>
<p>Thanks!</p>
<p>UPDATE: I am using the following version, which appears to be the latest.</p>
<pre><code>__author__ = "Leonard Richardson (leonardr@segfault.org)"
__version__ = "3.1.0.1"
__copyright__ = "Copyright (c) 2004-2009 Leonard Richardson"
__license__ = "New-style BSD"
</code></pre>
http://stackoverflow.com/questions/686147/url-tree-walker-in-python2URL tree walker in Python?Denis2009-03-26T14:57:13Z2009-08-03T15:37:12Z
<p>For URLs that show file trees, such as <a href="http://pypi.python.org/packages/2.5" rel="nofollow">Pypi packages</a>,
is there a small solid module to walk the URL tree and list it like <code>ls -lR</code>?<br />
I gather (correct me) that there's no standard encoding of file attributes,
link types, size, date ... in html <code><A</code> attributes<br />
so building a solid URLtree module on shifting sands is tough.<br />
But surely this wheel (<code>Unix file tree -> html -> treewalk API -> ls -lR or find</code>)
has been done?<br />
(There seem to be several spiders / web crawlers / scrapers out there, but they look ugly and ad hoc so far, despite BeautifulSoup for parsing).</p>
http://stackoverflow.com/questions/891690/can-i-change-beautifulsoups-behavior-regarding-converting-xml-tags-to-lowercase1Can I change BeautifulSoup's behavior regarding converting XML tags to lowercase?Rob Carr2009-05-21T07:03:24Z2009-08-03T15:35:17Z
<p>I'm working on code to parse a configuration file written in XML, where the XML tags are mixed case and the case is significant. Beautiful Soup appears to convert XML tags to lowercase by default, and I would like to change this behavior.</p>
<p>I'm not the first to ask a question on this subject [see <a href="http://stackoverflow.com/questions/567999/preventing-beautifulsoup-from-converting-my-xml-tags-to-lowercase">here</a>]. However, I did not understand the answer given to that question and in BeautifulSoup-3.1.0.1 BeautifulSoup.py does not appear to contain any instances of "<code>encodedName</code>" or "<code>Tag.__str__</code>"</p>
http://stackoverflow.com/questions/1080411/retrieve-links-from-web-page-using-python-and-beautiful-soup0retrieve links from web page using python and beautiful soupNepUS2009-07-03T18:29:56Z2009-08-03T15:34:01Z
<p>How can I retrieve the links of a webpage and copy the url adress of the links using Python?</p>