mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 09:13:53 +00:00
8 lines
238 B
Python
8 lines
238 B
Python
import spotipy
|
|
from spotipy.oauth2 import SpotifyOAuth
|
|
|
|
# set open_browser=False to prevent Spotipy from attempting to open the default browser
|
|
spotify = spotipy.Spotify(auth_manager=SpotifyOAuth(open_browser=False))
|
|
|
|
print(spotify.me())
|