spotipy/examples/simple4.py
Stephane Bruckert 28485cfa3e Lint
2020-02-22 11:15:19 +00:00

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()