码迷,mamicode.com
首页 > 编程语言 > 详细

python获取指定网页上的有多少个超级链接

时间:2014-12-05 12:27:16      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:http   sp   on   bs   ad   html   ef   as   tt   

# -*- coding: cp936 -*-

import urllib2

import re

def u(url):

    #connect to a URL

    website = urllib2.urlopen(url)

 

    #read html code

    html = website.read()

 

    #use re.findall to get all the links

    links = re.findall(‘"((http|ftp)s?://.*?)"‘, html)

 

    print u‘有:‘,len(links),u‘个‘

 

url=raw_input(‘url:‘)

u(url)

python获取指定网页上的有多少个超级链接

标签:http   sp   on   bs   ad   html   ef   as   tt   

原文地址:http://www.cnblogs.com/mhxy13867806343/p/4146133.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!