retrieve links from web page using python and beautiful soup - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:53:43Z http://stackoverflow.com/feeds/question/1080411 http://www.creativecommons.org/licenses/by-nc/2.5/rdf 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> http://stackoverflow.com/questions/1080411/retrieve-links-from-web-page-using-python-and-beautiful-soup/1080427#1080427 6 Answer by Andrew Johnson for retrieve links from web page using python and beautiful soup Andrew Johnson 2009-07-03T18:37:53Z 2009-07-03T19:27:14Z <pre><code>import urllib2 import BeautifulSoup request = urllib2.Request("http://www.gpsbasecamp.com/national-parks") response = urllib2.urlopen(request) soup = BeautifulSoup.BeautifulSoup(response) for a in soup.findAll('a'): if 'national-park' in a['href']: print 'found a url with national-park in the link' </code></pre> http://stackoverflow.com/questions/1080411/retrieve-links-from-web-page-using-python-and-beautiful-soup/1080472#1080472 4 Answer by ars for retrieve links from web page using python and beautiful soup ars 2009-07-03T18:53:55Z 2009-07-03T18:53:55Z <p>Here's a short snippet using the SoupStrainer class in BeautifulSoup:</p> <pre><code>import httplib2 from BeautifulSoup import BeautifulSoup, SoupStrainer http = httplib2.Http() status, response = http.request('http://www.nytimes.com') for link in BeautifulSoup(response, parseOnlyThese=SoupStrainer('a')): if link.has_key('href'): print link['href'] </code></pre> <p>The BeautifulSoup documentation is actually quite good, and covers a number of typical scenarios:</p> <p><a href="http://www.crummy.com/software/BeautifulSoup/documentation.html" rel="nofollow">http://www.crummy.com/software/BeautifulSoup/documentation.html</a></p> <p>Edit: Note that I used the SoupStrainer class because it's a bit more efficient (memory and speed wise), if you know what you're parsing in advance.</p> http://stackoverflow.com/questions/1080411/retrieve-links-from-web-page-using-python-and-beautiful-soup/1081404#1081404 0 Answer by ghostdog74 for retrieve links from web page using python and beautiful soup ghostdog74 2009-07-04T03:11:21Z 2009-07-04T03:11:21Z <p>just for getting the links, without B.soup and regex:</p> <pre><code>import urllib2 url="http://www.somewhere.com" page=urllib2.urlopen(url) data=page.read().split("&lt;/a&gt;") tag="&lt;a href=\"" endtag="\"&gt;" for item in data: if "&lt;a href" in item: try: ind = item.index(tag) item=item[ind+len(tag):] end=item.index(endtag) except: pass else: print item[:end] </code></pre> <p>for more complex operations, of course BSoup is still preferred.</p> http://stackoverflow.com/questions/1080411/retrieve-links-from-web-page-using-python-and-beautiful-soup/1223008#1223008 0 Answer by Wahnfrieden for retrieve links from web page using python and beautiful soup Wahnfrieden 2009-08-03T15:34:01Z 2009-08-03T15:34:01Z <p>Others have recommended BeautifulSoup, but it's much better to use <a href="http://codespeak.net/lxml/" rel="nofollow">lxml</a>. Despite its name, it is also for parsing and scraping HTML. It's much, much faster than BeautifulSoup, and it even handles "broken" HTML better than BeautifulSoup (their claim to fame). It has a compatibility API for BeautifulSoup too if you don't want to learn the lxml API.</p> <p><a href="http://blog.ianbicking.org/2008/12/10/lxml-an-underappreciated-web-scraping-library/" rel="nofollow">Ian Blicking agrees</a>.</p> <p>There's no reason to use BeautifulSoup anymore, unless you're on Google App Engine or something where anything not purely Python isn't allowed.</p> <p>lxml.html also supports CSS3 selectors so this sort of thing is trivial.</p>