mirror of
https://github.com/c0de-archive/spotipy.git
synced 2024-11-05 07:27:47 +00:00
33 lines
866 B
Python
33 lines
866 B
Python
|
|
# shows acoustic features for tracks for the given artist
|
|
|
|
from __future__ import print_function # (at top of module)
|
|
from spotipy.oauth2 import SpotifyClientCredentials
|
|
import json
|
|
import spotipy
|
|
import time
|
|
import sys
|
|
|
|
|
|
client_credentials_manager = SpotifyClientCredentials()
|
|
sp = spotipy.Spotify(client_credentials_manager=client_credentials_manager)
|
|
sp.trace=True
|
|
|
|
if len(sys.argv) > 1:
|
|
artist_name = ' '.join(sys.argv[1:])
|
|
results = sp.search(q=artist_name, limit=50)
|
|
tids = []
|
|
for i, t in enumerate(results['tracks']['items']):
|
|
print(' ', i, t['name'])
|
|
tids.append(t['uri'])
|
|
|
|
print(tids)
|
|
|
|
start = time.time()
|
|
features = sp.audio_features(tids)
|
|
delta = time.time() - start
|
|
print ("features", features)
|
|
print(json.dumps(features, indent=4))
|
|
|
|
print ("features retrieved in %.2f seconds" % (delta,))
|