I want to get fingerprints for images with the help of the imagehash function in Python but in order to apply
hash = imagehash.average_hash(Image.open(path))
the image needs to be in storage. Is there any way from which by just giving the image URL I can get the fingerprint of the image?
You can use
requests
: