mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 01:03:53 +00:00
9 lines
239 B
Python
9 lines
239 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())
|