[更新] 这是完整的项目代码
https://bitbucket.org/deshan/simple-web-crawler
[回答者]
soup('a') 返回完整的 html 标签。
<a href="http://itunes.apple.com/us/store">Buy Music Now</a>
所以urlopen给出错误
'NoneType' object is not callable'。您只需要提取 url/href。
links=soup.findAll('a',href=True)
for l in links:
print(l['href'])
您也需要验证 url。请参阅以下 anwsers
我再次建议您使用 python 集而不是 Arrays。您可以轻松添加、省略重复的 url。
试试下面的代码:
import re
import httplib
import urllib2
from urlparse import urlparse
import BeautifulSoup
regex = re.compile(
r'^(?:http|ftp)s?://' # http:// or https://
r'(?:(?:[A-Z0-9](?:[A-Z0-9-]{0,61}[A-Z0-9])?\.)+(?:[A-Z]{2,6}\.?|[A-Z0-9-]{2,}\.?)|' #domain...
r'localhost|' #localhost...
r'\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})' # ...or ip
r'(?::\d+)?' # optional port
r'(?:/?|[/?]\S+)$', re.IGNORECASE)
def isValidUrl(url):
if regex.match(url) is not None:
return True;
return False
def crawler(SeedUrl):
tocrawl=[SeedUrl]
crawled=[]
while tocrawl:
page=tocrawl.pop()
print 'Crawled:'+page
pagesource=urllib2.urlopen(page)
s=pagesource.read()
soup=BeautifulSoup.BeautifulSoup(s)
links=soup.findAll('a',href=True)
if page not in crawled:
for l in links:
if isValidUrl(l['href']):
tocrawl.append(l['href'])
crawled.append(page)
return crawled
crawler('http://www.princeton.edu/main/')