您好,登錄后才能下訂單哦!
面對網絡不穩定,頁面更新等問題,很可能出現程序異常的問題,所以我們要對程序進行一些異常處理。大家可能覺得處理異常是一個比較麻煩的活,但在面對復雜網頁和任務的時候,無疑成為一個很好的代碼習慣。
網頁‘404'、‘500'等問題
try: html = urlopen('http://www.pmcaff.com/2221') except HTTPError as e: print(e)
返回的是空網頁
if html is None: print('沒有找到網頁')
目標標簽在網頁中缺失
try: #不存在的標簽 content = bsObj.nonExistingTag.anotherTag except AttributeError as e: print('沒有找到你想要的標簽') else: if content == None: print('沒有找到你想要的標簽') else: print(content)
實例
if sys.version_info[0] == 2: from urllib2 import urlopen # Python 2 from urllib2 import HTTPError else: from urllib.request import urlopen # Python3 from urllib.error import HTTPError from bs4 import BeautifulSoup import sys def getTitle(url): try: html = urlopen(url) except HTTPError as e: print(e) return None try: bsObj = BeautifulSoup(html.read()) title = bsObj.body.h2 except AttributeError as e: return None return title title = getTitle("http://www.pythonscraping.com/exercises/exercise1.html") if title == None: print("Title could not be found") else: print(title)
以上全部為本篇文章的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。