import mmh3
import requests
import base64
response = requests.get('https://www.xxxx.com/favicon.ico')
favicon = base64.b64encode(response.content)
hash = mmh3.hash(favicon)
print('http.favicon.hash:'+str(hash))
python3计算网页的标记hash值
最新推荐文章于 2024-08-24 21:14:46 发布