mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 01:03:53 +00:00
* use newer string formatters (https://pyformat.info) * fix typo * went through the files again, additions from #1165 are also included * replace .format() with f strings
12 lines
301 B
Python
12 lines
301 B
Python
# Shows a user's playlists
|
|
|
|
import spotipy
|
|
from spotipy.oauth2 import SpotifyOAuth
|
|
|
|
scope = 'playlist-read-private'
|
|
sp = spotipy.Spotify(auth_manager=SpotifyOAuth(scope=scope))
|
|
|
|
results = sp.current_user_playlists(limit=50)
|
|
for i, item in enumerate(results['items']):
|
|
print(f"{i} {item['name']}")
|