如何检测 chrome 扩展名是否存在
How to detect if a chrome extension exists or not
我有一个 chrome 扩展程序 url 列表,我必须从中列出不存在的那些扩展程序 (404)。目前我正在抓取页面并检测它,但我想知道是否有其他方法可以做到这一点?
到目前为止,我已经编写了一个 python 代码来抓取 link 并检测 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')
要检查响应状态,请尝试请求中的方法status_code
。
link = _your_link_
r = requests.get(link)
r.status_code
4xx 状态表示错误。
参考文档here。
我有一个 chrome 扩展程序 url 列表,我必须从中列出不存在的那些扩展程序 (404)。目前我正在抓取页面并检测它,但我想知道是否有其他方法可以做到这一点?
到目前为止,我已经编写了一个 python 代码来抓取 link 并检测 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')
要检查响应状态,请尝试请求中的方法status_code
。
link = _your_link_
r = requests.get(link)
r.status_code
4xx 状态表示错误。
参考文档here。