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