mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 09:13:53 +00:00
11 lines
260 B
Python
11 lines
260 B
Python
import spotipy
|
|
import spotipy.util as util
|
|
|
|
from pprint import pprint
|
|
|
|
while True:
|
|
username = input("Type the Spotify user ID to use: ")
|
|
token = util.prompt_for_user_token(username, show_dialog=True)
|
|
sp = spotipy.Spotify(token)
|
|
pprint(sp.me())
|