This is my python code:
image = /folder/image.png
def download_image(path):
# insert download image proccess here
download_image(/anotherfolder/imagecopy.png)
What I want to do, is to download the image from /folder to /anotherfolder as imagecopy.png
I don't have an URL to the image. I just want to copy it.
Any ideas on how I could do this?