19 lines
544 B
Markdown
19 lines
544 B
Markdown
# 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
|