I need to download a set of images from Firebase Storage.
Before downloading, I need to check the type of Images (i.e. if .jpeg
only, only then will I need to download).
Can anyone help me with a code in Python?
I need to download a set of images from Firebase Storage.
Before downloading, I need to check the type of Images (i.e. if .jpeg
only, only then will I need to download).
Can anyone help me with a code in Python?
The easiest way of doing this is actually writing a Storage Security Rule that disallows downloads unless the file has a content type of
image/*
:See more in the docs.