urllib2.urlopenで取得したページのリンクを探すための基本的なループがありますが、ページの内部リンクのみをたどろうとしています。
以下のループを作成して同じドメインにあるリンクのみを取得する方法はありますか?
for tag in soupan.findAll('a', attrs={'href': re.compile("^http://")}):
webpage = urllib2.urlopen(tag['href']).read()
print 'Deep crawl ----> ' +str(tag['href'])
try:
code-to-look-for-some-data...
except Exception, e:
print e