retrieve links from web page using python and beautiful soup - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T17:53:43Zhttp://stackoverflow.com/feeds/question/1080411http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://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>
http://stackoverflow.com/questions/1080411/retrieve-links-from-web-page-using-python-and-beautiful-soup/1080427#10804276Answer by Andrew Johnson for retrieve links from web page using python and beautiful soupAndrew Johnson2009-07-03T18:37:53Z2009-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#10804724Answer by ars for retrieve links from web page using python and beautiful soupars2009-07-03T18:53:55Z2009-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#10814040Answer by ghostdog74 for retrieve links from web page using python and beautiful soupghostdog742009-07-04T03:11:21Z2009-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("</a>")
tag="<a href=\""
endtag="\">"
for item in data:
if "<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#12230080Answer by Wahnfrieden for retrieve links from web page using python and beautiful soupWahnfrieden2009-08-03T15:34:01Z2009-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>