I use this code to get acces to my link :
links = soup.find(\"span\", { \"class\" : \"hsmall\" }) links.findNextSiblings(\'a\') for link in links: print li
Okay, it works now with following code :
linkSpan = soup.find("span", { "class" : "hsmall" }) link = [tag.attrMap['href'] for tag in linkSpan.findAll('a', {'href': True})] for lien in link: print "LINK = " + lien`