I got this following error while running a program to create an Excel file from a list of titles in python.
"ModuleNotFoundError: No module named 'openpyxl'"
from urllib.parse import urlparse
vimeourl = "https://vimeo.com/184241852"
parse_url = urlparse(vimeourl)
video_id = parse_url.path.split('/')[1]
thumbnail_url = f"https://vumbnail.com/" + video_id + ".jpg"
print(thumbnail_url)