I have many images stored in an ftp server.
I would like to avoid downloading all the images, but just load them from the ftp using PIL, like that:
from PIL import Image
img = Image.open("ftp://myftp.com/dir/myimage.bmp")
It does not work this way (No such file or directory).
How can I do this without downloading in a temporary file ?
I am using python 3.8.