up vote 5 down vote favorite
4
share [g+] share [fb]

How can I retrieve the links of a webpage and copy the url adress of the links using Python?

link|improve this question
2  
Duplicate: stackoverflow.com/search?q=%5Bpython%5D+beautifulsoup at least 150 related questions. – S.Lott Jul 3 '09 at 19:18
3  
this comment is not useful. most of the questions in the link have nothing to do with this question. – gigantt.com May 25 '11 at 21:41
feedback

4 Answers

up vote 11 down vote accepted

Here's a short snippet using the SoupStrainer class in BeautifulSoup:

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']

The BeautifulSoup documentation is actually quite good, and covers a number of typical scenarios:

http://www.crummy.com/software/BeautifulSoup/documentation.html

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.

link|improve this answer
1  
+1, using the soup strainer is a great idea because it allows you to circumvent a lot of unnecessary parsing when all you're after are the links. – Evan Fosmark Jul 3 '09 at 18:57
I edited to add a similar explanation before I saw Evan's comment. Thanks for noting that, though! – ars Jul 3 '09 at 19:01
thanks, this solve my problem, with this I finish my proyect thanks a lot – NepUS Jul 3 '09 at 21:17
feedback
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'
link|improve this answer
I think you should replace response with response.read() – Tempus Jul 3 '09 at 18:57
1  
This code is correct. Paste it to an interpreter – Andrew Johnson Jul 3 '09 at 19:26
Sorry then :) . I remember I was using it with response.read() every time. – Tempus Jul 3 '09 at 19:42
feedback

Others have recommended BeautifulSoup, but it's much better to use lxml. 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.

Ian Blicking agrees.

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.

lxml.html also supports CSS3 selectors so this sort of thing is trivial.

An example with lxml and xpath would look like this:

import urllib
import lxml.html
connection = urllib.urlopen('http://www.nytimes.com')

dom =  lxml.html.fromstring(connection.read())

for link in dom.xpath('//a/@href'): # select teh url in href for all a tags(links)
    print link
link|improve this answer
feedback

just for getting the links, without B.soup and regex:

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]

for more complex operations, of course BSoup is still preferred.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.