python通过正则获取网页上的全部链接

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

import re, urllib
htmlSource = urllib.urlopen("http://www.sharejs.com").read(200000)
linksList = re.findall('<a href=(.*?)>.*?</a>',htmlSource)
for link in linksList:
    print link