如何检测是否存在chrome扩展名

时间:2019-01-30 14:20:20

标签: python chrome-web-store

我有一个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')

1 个答案:

答案 0 :(得分:0)

要检查响应状态,请在请求中尝试方法status_code

link = _your_link_
r = requests.get(link)
r.status_code

4xx状态将指示错误。

请参阅文档here