mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 17:23:53 +00:00
13 lines
199 B
Python
13 lines
199 B
Python
import spotipy
|
|
from pprint import pprint
|
|
|
|
|
|
def main():
|
|
spotify = spotipy.Spotify(auth_manager=spotipy.SpotifyOAuth())
|
|
me = spotify.me()
|
|
pprint(me)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|