urllib2抓取网页时的错误处理,urllib2抓取网页,try: urlf
urllib2抓取网页时的错误处理,urllib2抓取网页,try: urlf
try: urlfile = urllib2.urlopen('<a href="http://sebsauvage.net/nonexistingpage.html">http://sebsauvage.net/nonexistingpage.html')except urllib2.HTTPError, exc: if exc.code == 404: print "Not found !" else: print "HTTP request failed with error %d (%s)" % (exc.code, exc.msg)except urllib2.URLError, exc: print "Failed because:", exc.reason#该片段来自于http://byrx.net
相关内容
- python列出文件夹下的所有文件,python列出文件夹,#方法
- Python队列和堆栈,Python队列堆栈,#For a stack
- python windows平台锁定键盘,python锁定,pywin32中没有Bl
- Python 获取邮件地址,python获取邮件地址,import email
- Python 最长公共子串算法,python串算法,#!/usr/bin/e
- Python 实现enum的功能,python实现enum,class Enumer
- python随机生成一个简单的密码代码,python生成代码,im
- python检测远程服务器tcp端口的代码,python检测tcp端口
- django 返回request.META所有数据,djangorequest.meta,<html l
- 查询IP/域名对应IP信息代码,域名ip,#!/usr/bin/e
评论关闭