python 分析网页链接 连通性
最简单的方法:# -*- coding:utf-8 -*-from urllib import urlopenurl = Nonetry:url = urlopen('http://localhost/')s= url.getcode()except:s= '连接不存在!'print s
补充:Web开发 , Python ,
最简单的方法:# -*- coding:utf-8 -*-from urllib import urlopenurl = Nonetry:url = urlopen('http://localhost/')s= url.getcode()except:s= '连接不存在!'print s
补充:Web开发 , Python ,