Last active
December 17, 2022 06:24
-
-
Save MartinWeiss12/1fdc06869b0ca6fce3aa550084c2e357 to your computer and use it in GitHub Desktop.
Download Artist Images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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