search-demo / utils /fetch_image.py
rfmantoan
Add fetching mechanism
b6b8856
raw
history blame contribute delete
179 Bytes
import requests
from PIL import Image
from io import BytesIO
def fetch_image(url):
response = requests.get(url)
img = Image.open(BytesIO(response.content))
return img