Hey everyone! Is there any way to read an image from url and get the numpy array? I'm using a free account so I think I can't use this f.e:
response = requests.get("myUrl")
img = Image.open(BytesIO(response.content))
Because it's a request to a not whitelist site. Can I do this by using an api? If yes which one?
Thank you in advance