active questions tagged beautifulsoup - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:30:52Z http://stackoverflow.com/feeds/tag/beautifulsoup http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1796725/python-and-beautifulsoup-not-finding-a 3 Python and BeautifulSoup, not finding 'a' pns 2009-11-25T12:51:12Z 2009-11-25T17:12:49Z <p>Hey,</p> <p>Here's a piece of HTML code (from delicious):</p> <pre><code>&lt;h4&gt; &lt;a rel="nofollow" class="taggedlink " href="http://imfy.us/" &gt;Generate Secure Links with Anonymous Referers &amp;amp; Anti-Bot Protection&lt;/a&gt; &lt;span class="saverem"&gt; &lt;em class="bookmark-actions"&gt; &lt;strong&gt;&lt;a class="inlinesave action" href="/save?url=http%3A%2F%2Fimfy.us%2F&amp;amp;title=Generate%20Secure%20Links%20with%20Anonymous%20Referers%20%26%20Anti-Bot%20Protection&amp;amp;jump=%2Fdux&amp;amp;key=fFS4QzJW2lBf4gAtcrbuekRQfTY-&amp;amp;original_user=dux&amp;amp;copyuser=dux&amp;amp;copytags=web+apps+url+security+generator+shortener+anonymous+links"&gt;SAVE&lt;/a&gt;&lt;/strong&gt; &lt;/em&gt; &lt;/span&gt; &lt;/h4&gt; </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-website 0 What pure Python library should I use to scrape a website? MStodd 2009-10-13T21:58:03Z 2009-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 '&amp;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-target 4 Decomposing HTML to link text and target sundeep 2008-11-13T00:38:56Z 2009-11-22T09:20:38Z <p>Given an HTML link like</p> <pre><code>&lt;a href="urltxt" class="someclass" close="true"&gt;texttxt&lt;/a&gt; </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-contents 0 Remove a tag using BeautifulSoup but keeps its contents Jason Christa 2009-11-19T19:19:28Z 2009-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-perl 0 BeautifulSoup.findAll() in perl aaronstacy 2009-11-17T23:00:43Z 2009-11-18T03:32:59Z <p>I need to pull out all of the "NodeGroup" elements out of an XML file:</p> <pre><code>&lt;Database&gt; &lt;Get&gt; &lt;Data&gt; &lt;NodeGroups&gt; &lt;NodeGroup&gt; &lt;AssociateNode ConnID="6748763_2" /&gt; &lt;AssociateNode ConnID="6748763_1" /&gt; &lt;Data DataType="Capacity"&gt;2&lt;/Data&gt; &lt;Name&gt;Alpha&lt;/Name&gt; &lt;/NodeGroup&gt; &lt;NodeGroup&gt; &lt;AssociateNode ConnID="6748763_23" /&gt; &lt;AssociateNode ConnID="6748763_7" /&gt; &lt;Data DataType="Capacity"&gt;2&lt;/Data&gt; &lt;Name&gt;Charlie&lt;/Name&gt; &lt;/NodeGroup&gt; &lt;NodeGroup&gt; &lt;AssociateNode ConnID="6748763_98" /&gt; &lt;AssociateNode ConnID="6748763_12" /&gt; &lt;Data DataType="Capacity"&gt;2&lt;/Data&gt; &lt;Name&gt;Papa&lt;/Name&gt; &lt;/NodeGroup&gt; &lt;NodeGroup&gt; &lt;AssociateNode ConnID="6748763_8" /&gt; &lt;AssociateNode ConnID="6748763_45" /&gt; &lt;Data DataType="Capacity"&gt;2&lt;/Data&gt; &lt;Name&gt;Yankee&lt;/Name&gt; &lt;/NodeGroup&gt; &lt;/NodeGroups&gt; &lt;System&gt; ... &lt;/System&gt; &lt;/Data&gt; &lt;/Get&gt; &lt;/Database&gt; </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-contents 3 BeautifulSoup - easy way to to obtain HTML-free contents. Andrea Ambu 2009-11-17T23:38:20Z 2009-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>&lt;A HREF="notizia.php?idn=1134" OnMouseOver="verde();" OnMouseOut="blu();"&gt;&lt;FONT CLASS="v12"&gt;&lt;B&gt;03-11-2009:&amp;nbsp;&amp;nbsp;&lt;font color=green&gt;CCS Ingegneria Elettronica-Sportello studenti ed orientamento&lt;/B&gt;&lt;/FONT&gt;&lt;/A&gt; </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-tags 0 Making BeautifulSoup ignore contents inside script tags alphageek 2009-11-14T01:48:27Z 2009-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>&lt;html&gt;&lt;head&gt;&lt;body&gt;&lt;div&gt; &lt;script type='text/javascript'&gt; if(ii &gt; 0) { html += '&lt;span id="hoverMenuPosSepId" class="hoverMenuPosSep"&gt;|&lt;/span&gt;' } html += '&lt;div class="hoverMenuPos" id="hoverMenuPosId" onMouseOver=\"menuOver_3821();\" ' + 'onMouseOut=\"menuOut_3821();\"&gt;'; if (children[ii].uri == location.pathname) { html += '&lt;a class="hiHover" href="' + children[ii].uri + '" ' + onClick + '&gt;'; } else { html += '&lt;a class="hover" href="' + children[ii].uri + '" ' + onClick + '&gt;'; } html += children[ii].name + '&lt;/a&gt;&lt;/div&gt;'; } } 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); } &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </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-scrap 3 Looking for a recommendation of a good tutorial on best practices for a web scraping project? in bruges 2009-03-26T05:31:24Z 2009-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-ruby 4 What's the nearest equivalent of Beautiful Soup for Ruby? Tim 2009-03-12T19:10:29Z 2009-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-page 0 BeautifulSoup is omitting body of page gmoorevt 2009-11-09T01:12:02Z 2009-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>&lt;!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"&gt; &lt;html dir="LTR" lang="en"&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;title&gt; 2005 Jordan Cabernet Sauvignon Sonoma 2005 &lt;/title&gt; &lt;/head&gt; &lt;/html&gt; </code></pre> <p>Any ideas? </p> http://stackoverflow.com/questions/1697774/matching-tags-in-beautifulsoup 1 Matching tags in BeautifulSoup db90 2009-11-08T20:12:59Z 2009-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("&lt;[^&gt;*&gt;") 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-result 1 Using md5 on BeautifulSoup result db90 2009-11-07T19:01:52Z 2009-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-values 1 BeautifulSoup - extracting attribute values db90 2009-11-05T22:32:52Z 2009-11-06T00:06:37Z <p>If Beautiful Soup gives me an anchor tag like this:</p> <pre><code>&lt;a class="blah blah" id="blah blah" href="link.html"&gt;&lt;/a&gt; </code></pre> <p>How would I retrieve the value of the <code>href</code> attribute?</p> http://stackoverflow.com/questions/1661310/beautifulsoup-with-jython 2 BeautifulSoup with Jython gooli 2009-11-02T13:22:53Z 2009-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-beautifulsoup 0 How do you elimate all HTML tags/XML tags with BeautifulSoup? alex 2009-10-29T08:19:31Z 2009-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-question 1 Pamie and python-win32 question paul 2009-10-23T07:23:45Z 2009-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-beautifulsoup 1 Select specific child elements with BeautifulSoup driax 2009-10-15T11:12:42Z 2009-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>&lt;div id="top"&gt; &lt;div&gt;Content&lt;/div&gt; &lt;div&gt; &lt;div&gt;Content I Want&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </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-elements 2 Why is BeautifulSoup modifying my self-closing elements? Geo 2009-10-14T16:19:14Z 2009-10-14T16:22:13Z <p>This is the script I have:</p> <pre><code>import BeautifulSoup if __name__ == "__main__": data = """ &lt;root&gt; &lt;obj id="3"/&gt; &lt;obj id="5"/&gt; &lt;obj id="3"/&gt; &lt;/root&gt; """ soup = BeautifulSoup.BeautifulStoneSoup(data) print soup </code></pre> <p>When ran, this prints:</p> <pre><code>&lt;root&gt; &lt;obj id="3"&gt;&lt;/obj&gt; &lt;obj id="5"&gt;&lt;/obj&gt; &lt;obj id="3"&gt;&lt;/obj&gt; &lt;/root&gt; </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-python 1 Parsing out data using BeautifulSoup in Python rohanbk 2009-10-01T02:59:32Z 2009-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>&lt;html&gt; &lt;body&gt; &lt;div class="list-authors"&gt; &lt;span class="descriptor"&gt;Authors:&lt;/span&gt; &lt;a href="/find/astro-ph/1/au:+Lin_D/0/1/0/all/0/1"&gt;Dacheng Lin&lt;/a&gt;, &lt;a href="/find/astro-ph/1/au:+Remillard_R/0/1/0/all/0/1"&gt;Ronald A. Remillard&lt;/a&gt;, &lt;a href="/find/astro-ph/1/au:+Homan_J/0/1/0/all/0/1"&gt;Jeroen Homan&lt;/a&gt; &lt;/div&gt; &lt;div class="list-authors"&gt; &lt;span class="descriptor"&gt;Authors:&lt;/span&gt; &lt;a href="/find/astro-ph/1/au:+Kosovichev_A/0/1/0/all/0/1"&gt;A.G. Kosovichev&lt;/a&gt; &lt;/div&gt; &lt;!--There are many other div tags with this structure--&gt; &lt;/body&gt; &lt;/html&gt; </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-syntax 3 lxml equivalent to BeautifulSoup "OR" syntax? erikcw 2009-09-05T23:04:18Z 2009-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-attributes 1 Python web scraping involving HTML tags with attributes rohanbk 2009-09-08T02:23:25Z 2009-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>&lt;html&gt; &lt;body&gt; &lt;div id="container"&gt; &lt;div id="contents"&gt; &lt;table&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td class="author"&gt;####I want whatever is located here ###&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </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('&amp;nbsp', '&amp;#160') html=html.replace('&amp;iacute','&amp;#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-issue 0 urlopen, BeautifulSoup and UTF-8 Issue Ryan Rosario 2009-08-24T05:17:24Z 2009-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 "&lt;stdin&gt;", line 1, in &lt;module&gt; 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-php 3 Mechanize and BeautifulSoup for PHP? eyze 2009-08-12T01:24:42Z 2009-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-support 0 Web scraping sites that require javascript support [closed] Lin 2009-08-11T21:38:53Z 2009-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-too 2 Beautiful Soup cannot find a CSS class if the object has other classes, too endolith 2009-08-07T03:34:19Z 2009-08-07T15:18:07Z <p>if a page has <code>&lt;div class="class1"&gt;</code> and <code>&lt;p class="class1"&gt;</code>, then <code>soup.findAll(True, 'class1')</code> will find them both.</p> <p>If it has <code>&lt;p class="class1 class2"&gt;</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-easily 3 BeautifulSoup 3.1 parser breaks far too easily Mat 2009-01-19T23:07:02Z 2009-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>&lt;HTML&gt; &lt;HEAD&gt; &lt;TITLE&gt;Title&lt;/TITLE&gt; &lt;HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"&gt; &lt;/HEAD&gt; &lt;BODY&gt; ... ... &lt;/BODY&gt; &lt;/HTML&gt; </code></pre> <p>BeautifulSoup gives up after the <code>&lt;HTTP-EQUIV...&gt;</code> tag</p> <pre><code>In [1]: print BeautifulSoup(c).prettify() &lt;html&gt; &lt;head&gt; &lt;title&gt; Title &lt;/title&gt; &lt;/head&gt; &lt;/html&gt; </code></pre> <p>The problem is clearly the HTTP-EQUIV tag, which is really a <em>very</em> malformed <code>&lt;META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"&gt;</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() &lt;html&gt; &lt;head&gt; &lt;title&gt; Title &lt;/title&gt; &lt;/head&gt; &lt;/html&gt; </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-parsing 0 Issues with BeautifulSoup parsing Martin 2009-03-02T03:13:21Z 2009-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&amp;mfr=&amp;logon=&amp;langid=FR&amp;sort=0&amp;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 --------------------------------- &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;script language="JavaScript"&gt; &lt;!-- 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"; } //--&gt; &lt;/script&gt; </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-python 2 URL tree walker in Python? Denis 2009-03-26T14:57:13Z 2009-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>&lt;A</code> attributes<br /> so building a solid URLtree module on shifting sands is tough.<br /> But surely this wheel (<code>Unix file tree -&gt; html -&gt; treewalk API -&gt; 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-lowercase 1 Can I change BeautifulSoup's behavior regarding converting XML tags to lowercase? Rob Carr 2009-05-21T07:03:24Z 2009-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-soup 0 retrieve links from web page using python and beautiful soup NepUS 2009-07-03T18:29:56Z 2009-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>