Skip to content

Instantly share code, notes, and snippets.

@MartinWeiss12
Last active December 12, 2023 03:42
Show Gist options
  • Save MartinWeiss12/421e8afe400d2ac9792d4658eef0ad73 to your computer and use it in GitHub Desktop.
Save MartinWeiss12/421e8afe400d2ac9792d4658eef0ad73 to your computer and use it in GitHub Desktop.
Import Files
import os
import requests
import pandas as pd
from PIL import Image
# path for the excel file for your top albums
top_albums = pd.read_excel('')
# path for the excel file for your top artists
top_artists = pd.read_excel('')
# path for an empty folder named 'Album-Images' where the album images will be saved to
album_images = ''
# path for an empty folder named 'Artist-Images' where the artist images will be saved to
artist_images = ''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment