Hello,
I have a list of images that I am trying to go through and send each of them to an API call.
However, the API I’m using can only process one image at a time per call. But I need to send 10-20 images to this API, so this will be 10-20 API calls, each with a different image sent to it until all images in the list are sent.
I am wondering how can I go through this list of images to send to this API call multiple times until each image is sent to the API, and not send duplicates with the list of images.
Any ideas?
Thanks.