mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 09:13:53 +00:00
12 lines
252 B
Python
12 lines
252 B
Python
from pprint import pprint
|
|
|
|
import spotipy
|
|
from spotipy.oauth2 import SpotifyClientCredentials
|
|
|
|
auth_manager = SpotifyClientCredentials()
|
|
sp = spotipy.Spotify(auth_manager=auth_manager)
|
|
|
|
search_str = 'Muse'
|
|
result = sp.search(search_str)
|
|
pprint(result)
|