python验证网页是否存在

import urllib.requestimport timeopener = urllib.request.build_opener()opener.addheaders = [(‘User-agent’, ‘Mozilla/49.0.2’)]# 这个是你放网址文件名,改过来就可以了file = open(‘test.txt’)lines = file.readlines()aa = []for line in lines: temp = line.replace(”, ”) aa.append(temp)print(aa)print(‘开始检查:’)for a in aa: tempUrl = a try: opener.open(tempUrl) print(tempUrl + ‘没问题’) except urllib.error.HTTPError: print(‘NULL’) time.sleep(4) except urllib.error.URLError: print(‘NULL’) time.sleep(4) time.sleep(0.3)

郑重声明:本文内容及图片均整理自互联网,不代表本站立场,版权归原作者所有,如有侵权请联系管理员(admin#wlmqw.com)删除。
上一篇 2022年7月4日 18:08
下一篇 2022年7月4日 18:08

相关推荐

联系我们

联系邮箱:admin#wlmqw.com
工作时间:周一至周五,10:30-18:30,节假日休息