Fix comments and parentheses in my_top_tracks.py

This commit is contained in:
Ryan K. Lee 2019-07-06 01:48:52 -07:00 committed by Stephane Bruckert
parent ba6e9a0b79
commit cc158c34f1

View File

@ -1,4 +1,4 @@
# Adds tracks to a playlist
# Shows the top tracks for a user
import pprint
import sys
@ -21,11 +21,11 @@ if token:
sp.trace = False
ranges = ['short_term', 'medium_term', 'long_term']
for range in ranges:
print "range:", range
print ("range:", range)
results = sp.current_user_top_tracks(time_range=range, limit=50)
for i, item in enumerate(results['items']):
print i, item['name'], '//', item['artists'][0]['name']
print
print (i, item['name'], '//', item['artists'][0]['name'])
print ()
else:
print("Can't get token for", username)