using tk, show the currently playing song on spotify
Find a file
2024-06-24 20:39:01 -07:00
v0 move first version to v0 2024-06-24 20:31:01 -07:00
v0.1 update README.md and add v0.1 2024-06-24 20:39:01 -07:00
README.md update README.md and add v0.1 2024-06-24 20:39:01 -07:00

py-spotify

this is a python script to show the now playing information from spotify, into a tkinter window.

this script requires the following libraries:

import tkinter as tk
from tkinter import ttk
from PIL import Image, ImageTk
import requests
from io import BytesIO
import spotipy
from spotipy.oauth2 import SpotifyOAuth

in your spotify application in your developer portal, make sure you set http://localhost:8888/callback as one of your callbacks or else the code will not function as intended.

im too lazy to format this