lgaleana's picture
Ads generated from website images
1bc7525
raw
history blame
844 Bytes
from concurrent.futures import ThreadPoolExecutor
from typing import Dict, List
from dotenv import load_dotenv
from google.cloud import vision
from code_tasks.image_dimensions import get_image_dimensions
load_dotenv()
def get_image_info(url: str) -> Dict:
client = vision.ImageAnnotatorClient()
image = vision.Image()
image.source.image_uri = url # type: ignore
response = client.label_detection(image=image) # type: ignore
labels = [label.description for label in response.label_annotations]
dimensions = get_image_dimensions(url)
return {
"url": url,
"labels": ", ".join(labels),
"dimensions": f"{dimensions[0]}x{dimensions[1]}",
}
def get_info_for_images(urls) -> List[Dict]:
with ThreadPoolExecutor() as executor:
return list(executor.map(get_image_info, urls))