Skip to content

Instantly share code, notes, and snippets.

@MartinWeiss12
Last active December 17, 2022 06:24
Show Gist options
  • Select an option

  • Save MartinWeiss12/1fdc06869b0ca6fce3aa550084c2e357 to your computer and use it in GitHub Desktop.

Select an option

Save MartinWeiss12/1fdc06869b0ca6fce3aa550084c2e357 to your computer and use it in GitHub Desktop.
Download Artist Images
for image in range(len(artistImageUrlList)):
artistImageUrl = requests.get(artistImageUrlList[image])
filename = 'artist_' + str(image+1) + '.png'
with open(os.path.join(imageFolderPath, filename), 'wb') as out:
out.write(artistImageUrl.content)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment