Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
7  
this comment is not useful. most of the questions in the link have nothing to do with this question. – Assaf Lavie May 25 '11 at 21:41

5 Answers

up vote 24 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_attr('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.

share|improve this answer
2  
+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
Heads up: /usr/local/lib/python2.7/site-packages/bs4/__init__.py:128: UserWarning: The "parseOnlyThese" argument to the BeautifulSoup constructor has been renamed to "parse_only." – BenDundee Feb 19 at 14:11
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'
share|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

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 the url in href for all a tags(links)
    print link
share|improve this answer

Why not use regular expressions:

import urllib2
import re
url = "http://www.somewhere.com"
page = urllib2.urlopen(url)
page = page.read()
links = re.findall(r"<a.*?\s*href=\"(.*?)\".*?>(.*?)</a>", page)
for link in links:
    print('href: %s, HTML text: %s' % (link[0], link[1]))
share|improve this answer
i'd love to be able to understand this, where can i efficiently find out what (r"<a.*?\s*href=\"(.*?)\".*?>(.*?)</a>", page) means? thanks! – user1063287 Apr 6 at 4:46

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.

share|improve this answer
1  
And if, for instance, there's something inbetween <a and href? Say rel="nofollow" or onclick="..." or even just a new line? stackoverflow.com/questions/1732348/… – dimo414 Sep 12 '12 at 21:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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