我有一个chrome扩展名URL列表,必须从中列出不存在的那些扩展名(404)。目前,我正在抓取页面并进行检测,但是我想知道是否还有其他方法可以做到?
到目前为止,我已经编写了一个python代码来抓取链接并检测404。 我的代码:-
import requests
html= requests.get("<<chrome extension link comes here>>")
html_code = html.text
if ('''code unique to the 404 page of google''' in html_code):
print('404 positive')
else:
print('404 negative')
答案 0 :(得分:0)
要检查响应状态,请在请求中尝试方法status_code
。
link = _your_link_
r = requests.get(link)
r.status_code
4xx状态将指示错误。
请参阅文档here。