Initial run of 2to3

This commit is contained in:
Joona Hoikkala 2015-06-05 12:07:28 +03:00
parent 96edfc44ab
commit 1f833afa45
32 changed files with 103 additions and 103 deletions

View File

@ -42,8 +42,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'spotipy' project = 'spotipy'
copyright = u'2014, Paul Lamere' copyright = '2014, Paul Lamere'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
@ -185,8 +185,8 @@ latex_elements = {
# Grouping the document tree into LaTeX files. List of tuples # Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]). # (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [ latex_documents = [
('index', 'spotipy.tex', u'spotipy Documentation', ('index', 'spotipy.tex', 'spotipy Documentation',
u'Paul Lamere', 'manual'), 'Paul Lamere', 'manual'),
] ]
# The name of an image file (relative to this directory) to place at the top of # The name of an image file (relative to this directory) to place at the top of
@ -215,8 +215,8 @@ latex_documents = [
# One entry per manual page. List of tuples # One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'spotipy', u'spotipy Documentation', ('index', 'spotipy', 'spotipy Documentation',
[u'Paul Lamere'], 1) ['Paul Lamere'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -229,8 +229,8 @@ man_pages = [
# (source start file, target name, title, author, # (source start file, target name, title, author,
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'spotipy', u'spotipy Documentation', ('index', 'spotipy', 'spotipy Documentation',
u'Paul Lamere', 'spotipy', 'One line description of project.', 'Paul Lamere', 'spotipy', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]

View File

@ -13,7 +13,7 @@ if len(sys.argv) > 2:
username = sys.argv[1] username = sys.argv[1]
tids = sys.argv[2:] tids = sys.argv[2:]
else: else:
print "Usage: %s username track-id ..." % (sys.argv[0],) print("Usage: %s username track-id ..." % (sys.argv[0],))
sys.exit() sys.exit()
token = util.prompt_for_user_token(username, scope) token = util.prompt_for_user_token(username, scope)
@ -24,4 +24,4 @@ if token:
results = sp.current_user_saved_tracks_add(tracks=tids) results = sp.current_user_saved_tracks_add(tracks=tids)
pprint.pprint(results) pprint.pprint(results)
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -12,7 +12,7 @@ if len(sys.argv) > 3:
playlist_id = sys.argv[2] playlist_id = sys.argv[2]
track_ids = sys.argv[3:] track_ids = sys.argv[3:]
else: else:
print "Usage: %s username playlist_id track_id ..." % (sys.argv[0],) print("Usage: %s username playlist_id track_id ..." % (sys.argv[0],))
sys.exit() sys.exit()
scope = 'playlist-modify-public' scope = 'playlist-modify-public'
@ -22,6 +22,6 @@ if token:
sp = spotipy.Spotify(auth=token) sp = spotipy.Spotify(auth=token)
sp.trace = False sp.trace = False
results = sp.user_playlist_add_tracks(username, playlist_id, track_ids) results = sp.user_playlist_add_tracks(username, playlist_id, track_ids)
print results print(results)
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -24,14 +24,14 @@ def show_artist_albums(artist):
for album in albums: for album in albums:
name = album['name'] name = album['name']
if name not in seen: if name not in seen:
print(' ' + name) print((' ' + name))
seen.add(name) seen.add(name)
if __name__ == '__main__': if __name__ == '__main__':
sp = spotipy.Spotify() sp = spotipy.Spotify()
if len(sys.argv) < 2: if len(sys.argv) < 2:
print('Usage: {0} artist name'.format(sys.argv[0])) print(('Usage: {0} artist name'.format(sys.argv[0])))
else: else:
name = ' '.join(sys.argv[1:]) name = ' '.join(sys.argv[1:])
artist = get_artist(name) artist = get_artist(name)

View File

@ -20,9 +20,9 @@ def show_album_tracks(album):
results = sp.next(results) results = sp.next(results)
tracks.extend(results['items']) tracks.extend(results['items'])
for track in tracks: for track in tracks:
print ' ', track['name'] print(' ', track['name'])
print print()
print track print(track)
def show_artist_albums(id): def show_artist_albums(id):
albums = [] albums = []
@ -31,27 +31,27 @@ def show_artist_albums(id):
while results['next']: while results['next']:
results = sp.next(results) results = sp.next(results)
albums.extend(results['items']) albums.extend(results['items'])
print 'Total albums:', len(albums) print('Total albums:', len(albums))
unique = set() # skip duplicate albums unique = set() # skip duplicate albums
for album in albums: for album in albums:
name = album['name'] name = album['name']
if not name in unique: if not name in unique:
print name print(name)
unique.add(name) unique.add(name)
show_album_tracks(album) show_album_tracks(album)
def show_artist(artist): def show_artist(artist):
print '====', artist['name'], '====' print('====', artist['name'], '====')
print 'Popularity: ', artist['popularity'] print('Popularity: ', artist['popularity'])
if len(artist['genres']) > 0: if len(artist['genres']) > 0:
print 'Genres: ', ','.join(artist['genres']) print('Genres: ', ','.join(artist['genres']))
if __name__ == '__main__': if __name__ == '__main__':
sp = spotipy.Spotify() sp = spotipy.Spotify()
sp.trace = False sp.trace = False
if len(sys.argv) < 2: if len(sys.argv) < 2:
print('Usage: {0} artist name'.format(sys.argv[0])) print(('Usage: {0} artist name'.format(sys.argv[0])))
else: else:
name = ' '.join(sys.argv[1:]) name = ' '.join(sys.argv[1:])
artist = get_artist(name) artist = get_artist(name)

View File

@ -10,7 +10,7 @@ if len(sys.argv) > 2:
username = sys.argv[1] username = sys.argv[1]
tids = sys.argv[2:] tids = sys.argv[2:]
else: else:
print "Usage: %s username track-id ..." % (sys.argv[0],) print("Usage: %s username track-id ..." % (sys.argv[0],))
sys.exit() sys.exit()
token = util.prompt_for_user_token(username, scope) token = util.prompt_for_user_token(username, scope)
@ -21,4 +21,4 @@ if token:
results = sp.current_user_saved_tracks_contains(tracks=tids) results = sp.current_user_saved_tracks_contains(tracks=tids)
pprint.pprint(results) pprint.pprint(results)
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -13,7 +13,7 @@ if len(sys.argv) > 2:
username = sys.argv[1] username = sys.argv[1]
playlist_name = sys.argv[2] playlist_name = sys.argv[2]
else: else:
print "Usage: %s username playlist-name" % (sys.argv[0],) print("Usage: %s username playlist-name" % (sys.argv[0],))
sys.exit() sys.exit()
token = util.prompt_for_user_token(username) token = util.prompt_for_user_token(username)
@ -24,4 +24,4 @@ if token:
playlists = sp.user_playlist_create(username, playlist_name) playlists = sp.user_playlist_create(username, playlist_name)
pprint.pprint(playlists) pprint.pprint(playlists)
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -12,7 +12,7 @@ if len(sys.argv) > 2:
username = sys.argv[1] username = sys.argv[1]
tids = sys.argv[2:] tids = sys.argv[2:]
else: else:
print "Usage: %s username track-id ..." % (sys.argv[0],) print("Usage: %s username track-id ..." % (sys.argv[0],))
sys.exit() sys.exit()
token = util.prompt_for_user_token(username, scope) token = util.prompt_for_user_token(username, scope)
@ -23,4 +23,4 @@ if token:
results = sp.current_user_saved_tracks_delete(tracks=tids) results = sp.current_user_saved_tracks_delete(tracks=tids)
pprint.pprint(results) pprint.pprint(results)
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -16,7 +16,7 @@ if len(sys.argv) > 3:
tid, pos = t_pos.split(',') tid, pos = t_pos.split(',')
track_ids.append( { "uri" : tid, "positions": [ int(pos)] } ) track_ids.append( { "uri" : tid, "positions": [ int(pos)] } )
else: else:
print "Usage: %s username playlist_id track_id,pos track_id,pos ..." % (sys.argv[0],) print("Usage: %s username playlist_id track_id,pos track_id,pos ..." % (sys.argv[0],))
sys.exit() sys.exit()
scope = 'playlist-modify-public' scope = 'playlist-modify-public'
@ -28,4 +28,4 @@ if token:
results = sp.user_playlist_remove_specific_occurrences_of_tracks(username, playlist_id, track_ids) results = sp.user_playlist_remove_specific_occurrences_of_tracks(username, playlist_id, track_ids)
pprint.pprint(results) pprint.pprint(results)
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -12,7 +12,7 @@ if len(sys.argv) > 3:
playlist_id = sys.argv[2] playlist_id = sys.argv[2]
track_ids = sys.argv[3:] track_ids = sys.argv[3:]
else: else:
print "Usage: %s username playlist_id track_id ..." % (sys.argv[0],) print("Usage: %s username playlist_id track_id ..." % (sys.argv[0],))
sys.exit() sys.exit()
scope = 'playlist-modify-public' scope = 'playlist-modify-public'
@ -24,4 +24,4 @@ if token:
results = sp.user_playlist_remove_all_occurrences_of_tracks(username, playlist_id, track_ids) results = sp.user_playlist_remove_all_occurrences_of_tracks(username, playlist_id, track_ids)
pprint.pprint(results) pprint.pprint(results)
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -12,7 +12,7 @@ if len(sys.argv) > 3:
playlist_id = sys.argv[2] playlist_id = sys.argv[2]
track_ids = sys.argv[3:] track_ids = sys.argv[3:]
else: else:
print "Usage: %s username playlist_id track_id ..." % (sys.argv[0],) print("Usage: %s username playlist_id track_id ..." % (sys.argv[0],))
sys.exit() sys.exit()
scope = 'playlist-modify-public' scope = 'playlist-modify-public'
@ -24,4 +24,4 @@ if token:
results = sp.user_playlist_replace_tracks(username, playlist_id, track_ids) results = sp.user_playlist_replace_tracks(username, playlist_id, track_ids)
pprint.pprint(results) pprint.pprint(results)
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -13,4 +13,4 @@ sp = spotipy.Spotify()
response = sp.artist_top_tracks(urn) response = sp.artist_top_tracks(urn)
for track in response['tracks']: for track in response['tracks']:
print track['name'] print(track['name'])

View File

@ -8,8 +8,8 @@ import spotipy.util as util
if len(sys.argv) > 1: if len(sys.argv) > 1:
username = sys.argv[1] username = sys.argv[1]
else: else:
print "Whoops, need your username!" print("Whoops, need your username!")
print "usage: python featured_playlists.py [username]" print("usage: python featured_playlists.py [username]")
sys.exit() sys.exit()
token = util.prompt_for_user_token(username) token = util.prompt_for_user_token(username)
@ -18,16 +18,16 @@ if token:
sp = spotipy.Spotify(auth=token) sp = spotipy.Spotify(auth=token)
response = sp.featured_playlists() response = sp.featured_playlists()
print response['message'] print(response['message'])
while response: while response:
playlists = response['playlists'] playlists = response['playlists']
for i, item in enumerate(playlists['items']): for i, item in enumerate(playlists['items']):
print playlists['offset'] + i, item['name'] print(playlists['offset'] + i, item['name'])
if playlists['next']: if playlists['next']:
response = sp.next(playlists) response = sp.next(playlists)
else: else:
response = None response = None
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -10,7 +10,7 @@ scope = 'user-library-read'
if len(sys.argv) > 1: if len(sys.argv) > 1:
username = sys.argv[1] username = sys.argv[1]
else: else:
print "Usage: %s username" % (sys.argv[0],) print("Usage: %s username" % (sys.argv[0],))
sys.exit() sys.exit()
token = util.prompt_for_user_token(username, scope) token = util.prompt_for_user_token(username, scope)
@ -20,6 +20,6 @@ if token:
results = sp.current_user_saved_tracks() results = sp.current_user_saved_tracks()
for item in results['items']: for item in results['items']:
track = item['track'] track = item['track']
print track['name'] + ' - ' + track['artists'][0]['name'] print(track['name'] + ' - ' + track['artists'][0]['name'])
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -8,8 +8,8 @@ import spotipy.util as util
if len(sys.argv) > 1: if len(sys.argv) > 1:
username = sys.argv[1] username = sys.argv[1]
else: else:
print "Whoops, need your username!" print("Whoops, need your username!")
print "usage: python new_releases.py [username]" print("usage: python new_releases.py [username]")
sys.exit() sys.exit()
token = util.prompt_for_user_token(username) token = util.prompt_for_user_token(username)
@ -22,11 +22,11 @@ if token:
while response: while response:
albums = response['albums'] albums = response['albums']
for i, item in enumerate(albums['items']): for i, item in enumerate(albums['items']):
print albums['offset'] + i,item['name'] print(albums['offset'] + i,item['name'])
if albums['next']: if albums['next']:
response = sp.next(albums) response = sp.next(albums)
else: else:
response = None response = None
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -17,9 +17,9 @@ try:
uri = result['artists']['items'][0]['uri'] uri = result['artists']['items'][0]['uri']
related = sp.artist_related_artists(uri) related = sp.artist_related_artists(uri)
print 'Related artists for', name print('Related artists for', name)
for artist in related['artists']: for artist in related['artists']:
print ' ', artist['name'] print(' ', artist['name'])
except: except:
print "usage show_related.py [artist-name]" print("usage show_related.py [artist-name]")

View File

@ -15,10 +15,10 @@ if __name__ == '__main__':
tids = file.read().split() tids = file.read().split()
sp = spotipy.Spotify() sp = spotipy.Spotify()
for start in xrange(0, len(tids), max_tracks_per_call): for start in range(0, len(tids), max_tracks_per_call):
results = sp.tracks(tids[start: start + max_tracks_per_call]) results = sp.tracks(tids[start: start + max_tracks_per_call])
for track in results['tracks']: for track in results['tracks']:
print track['name'] + ' - ' + track['artists'][0]['name'] print(track['name'] + ' - ' + track['artists'][0]['name'])

View File

@ -3,4 +3,4 @@ sp = spotipy.Spotify()
results = sp.search(q='weezer', limit=20) results = sp.search(q='weezer', limit=20)
for i, t in enumerate(results['tracks']['items']): for i, t in enumerate(results['tracks']['items']):
print ' ', i, t['name'] print(' ', i, t['name'])

View File

@ -12,5 +12,5 @@ while results['next']:
albums.extend(results['items']) albums.extend(results['items'])
for album in albums: for album in albums:
print(album['name']) print((album['name']))

View File

@ -9,7 +9,7 @@ spotify = spotipy.Spotify()
results = spotify.artist_top_tracks(lz_uri) results = spotify.artist_top_tracks(lz_uri)
for track in results['tracks'][:10]: for track in results['tracks'][:10]:
print 'track : ' + track['name'] print('track : ' + track['name'])
print 'audio : ' + track['preview_url'] print('audio : ' + track['preview_url'])
print 'cover art: ' + track['album']['images'][0]['url'] print('cover art: ' + track['album']['images'][0]['url'])
print print()

View File

@ -12,5 +12,5 @@ results = spotify.search(q='artist:' + name, type='artist')
items = results['artists']['items'] items = results['artists']['items']
if len(items) > 0: if len(items) > 0:
artist = items[0] artist = items[0]
print artist['name'], artist['images'][0]['url'] print(artist['name'], artist['images'][0]['url'])

View File

@ -1,6 +1,6 @@
# shows tracks for the given artist # shows tracks for the given artist
from __future__ import print_function
import spotipy import spotipy
import sys import sys
sp = spotipy.Spotify() sp = spotipy.Spotify()

View File

@ -13,8 +13,8 @@ import spotipy.util as util
if len(sys.argv) > 1: if len(sys.argv) > 1:
username = sys.argv[1] username = sys.argv[1]
else: else:
print "Whoops, need your username!" print("Whoops, need your username!")
print "usage: python user_playlists.py [username]" print("usage: python user_playlists.py [username]")
sys.exit() sys.exit()
token = util.prompt_for_user_token(username) token = util.prompt_for_user_token(username)
@ -23,6 +23,6 @@ if token:
sp = spotipy.Spotify(auth=token) sp = spotipy.Spotify(auth=token)
playlists = sp.user_playlists(username) playlists = sp.user_playlists(username)
for playlist in playlists['items']: for playlist in playlists['items']:
print playlist['name'] print(playlist['name'])
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -8,15 +8,15 @@ import spotipy.util as util
def show_tracks(results): def show_tracks(results):
for i, item in enumerate(tracks['items']): for i, item in enumerate(tracks['items']):
track = item['track'] track = item['track']
print " %d %32.32s %s" % (i, track['artists'][0]['name'], track['name']) print(" %d %32.32s %s" % (i, track['artists'][0]['name'], track['name']))
if __name__ == '__main__': if __name__ == '__main__':
if len(sys.argv) > 1: if len(sys.argv) > 1:
username = sys.argv[1] username = sys.argv[1]
else: else:
print "Whoops, need your username!" print("Whoops, need your username!")
print "usage: python user_playlists.py [username]" print("usage: python user_playlists.py [username]")
sys.exit() sys.exit()
token = util.prompt_for_user_token(username) token = util.prompt_for_user_token(username)
@ -27,9 +27,9 @@ if __name__ == '__main__':
playlists = sp.user_playlists(username) playlists = sp.user_playlists(username)
for playlist in playlists['items']: for playlist in playlists['items']:
if playlist['owner']['id'] == username: if playlist['owner']['id'] == username:
print print()
print playlist['name'] print(playlist['name'])
print ' total tracks', playlist['tracks']['total'] print(' total tracks', playlist['tracks']['total'])
results = sp.user_playlist(username, playlist['id'], fields="tracks,next") results = sp.user_playlist(username, playlist['id'], fields="tracks,next")
tracks = results['tracks'] tracks = results['tracks']
show_tracks(tracks) show_tracks(tracks)
@ -37,5 +37,5 @@ if __name__ == '__main__':
tracks = sp.next(tracks) tracks = sp.next(tracks)
show_tracks(tracks) show_tracks(tracks)
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -9,8 +9,8 @@ import spotipy.util as util
if len(sys.argv) > 1: if len(sys.argv) > 1:
username = sys.argv[1] username = sys.argv[1]
else: else:
print "Whoops, need your username!" print("Whoops, need your username!")
print "usage: python user_playlists.py [username]" print("usage: python user_playlists.py [username]")
sys.exit() sys.exit()
token = util.prompt_for_user_token(username) token = util.prompt_for_user_token(username)
@ -23,9 +23,9 @@ if token:
while tracks: while tracks:
for item in tracks['items']: for item in tracks['items']:
track = item['track'] track = item['track']
print which, track['name' ], ' --', track['artists'][0]['name'] print(which, track['name' ], ' --', track['artists'][0]['name'])
which += 1 which += 1
tracks = sp.next(tracks) tracks = sp.next(tracks)
else: else:
print "Can't get token for", username print("Can't get token for", username)

View File

@ -1,2 +1,2 @@
VERSION='2.0.1' VERSION='2.0.1'
from client import Spotify, SpotifyException from .client import Spotify, SpotifyException

View File

@ -1,6 +1,6 @@
# coding: utf-8 # coding: utf-8
from __future__ import print_function
import sys import sys
import base64 import base64
@ -18,7 +18,7 @@ class SpotifyException(Exception):
self.msg = msg self.msg = msg
def __str__(self): def __str__(self):
return u'http status: {0}, code:{1} - {2}'.format( return 'http status: {0}, code:{1} - {2}'.format(
self.http_status, self.code, self.msg) self.http_status, self.code, self.msg)
class Spotify(object): class Spotify(object):
@ -101,7 +101,7 @@ class Spotify(object):
r.raise_for_status() r.raise_for_status()
except: except:
raise SpotifyException(r.status_code, raise SpotifyException(r.status_code,
-1, u'%s:\n %s' % (r.url, r.json()['error']['message'])) -1, '%s:\n %s' % (r.url, r.json()['error']['message']))
if len(r.text) > 0: if len(r.text) > 0:
results = r.json() results = r.json()
if self.trace: # pragma: no cover if self.trace: # pragma: no cover

View File

@ -1,6 +1,6 @@
from __future__ import print_function
import base64 import base64
import urllib import urllib.request, urllib.parse, urllib.error
import requests import requests
import os import os
import json import json
@ -154,7 +154,7 @@ class SpotifyOAuth(object):
if self.state: if self.state:
payload['state'] = self.state payload['state'] = self.state
urlparams = urllib.urlencode(payload) urlparams = urllib.parse.urlencode(payload)
return "%s?%s" % (self.OAUTH_AUTHORIZE_URL, urlparams) return "%s?%s" % (self.OAUTH_AUTHORIZE_URL, urlparams)

View File

@ -3,7 +3,7 @@
import os import os
import subprocess import subprocess
import oauth2 from . import oauth2
import spotipy import spotipy
def prompt_for_user_token(username, scope=None, client_id = None, def prompt_for_user_token(username, scope=None, client_id = None,
@ -32,7 +32,7 @@ def prompt_for_user_token(username, scope=None, client_id = None,
redirect_uri = os.getenv('SPOTIPY_REDIRECT_URI') redirect_uri = os.getenv('SPOTIPY_REDIRECT_URI')
if not client_id: if not client_id:
print ''' print('''
You need to set your Spotify API credentials. You can do this by You need to set your Spotify API credentials. You can do this by
setting environment variables like so: setting environment variables like so:
@ -42,7 +42,7 @@ def prompt_for_user_token(username, scope=None, client_id = None,
Get your credentials at Get your credentials at
https://developer.spotify.com/my-applications https://developer.spotify.com/my-applications
''' ''')
raise spotipy.SpotifyException(550, -1, 'no credentials set') raise spotipy.SpotifyException(550, -1, 'no credentials set')
sp_oauth = oauth2.SpotifyOAuth(client_id, client_secret, redirect_uri, sp_oauth = oauth2.SpotifyOAuth(client_id, client_secret, redirect_uri,
@ -55,7 +55,7 @@ def prompt_for_user_token(username, scope=None, client_id = None,
token_info = sp_oauth.get_cached_token() token_info = sp_oauth.get_cached_token()
if not token_info: if not token_info:
print ''' print('''
User authentication requires interaction with your User authentication requires interaction with your
web browser. Once you enter your credentials and web browser. Once you enter your credentials and
@ -63,19 +63,19 @@ def prompt_for_user_token(username, scope=None, client_id = None,
a url. Paste that url you were directed to to a url. Paste that url you were directed to to
complete the authorization. complete the authorization.
''' ''')
auth_url = sp_oauth.get_authorize_url() auth_url = sp_oauth.get_authorize_url()
try: try:
subprocess.call(["open", auth_url]) subprocess.call(["open", auth_url])
print "Opening %s in your browser" % auth_url print("Opening %s in your browser" % auth_url)
except: except:
print "Please navigate here: %s" % auth_url print("Please navigate here: %s" % auth_url)
print print()
print print()
response = raw_input("Enter the URL you were redirected to: ") response = input("Enter the URL you were redirected to: ")
print print()
print print()
code = sp_oauth.parse_response_code(response) code = sp_oauth.parse_response_code(response)
token_info = sp_oauth.get_access_token(code) token_info = sp_oauth.get_access_token(code)

View File

@ -174,4 +174,4 @@ if __name__ == '__main__':
spotify.trace = False spotify.trace = False
unittest.main() unittest.main()
else: else:
print "Usage: %s username" % (sys.argv[0],) print("Usage: %s username" % (sys.argv[0],))

View File

@ -17,7 +17,7 @@ class ClientCredentialsTestSpotipy(unittest.TestCase):
def test_request_with_token(self): def test_request_with_token(self):
artist = spotify.artist(self.muse_urn) artist = spotify.artist(self.muse_urn)
self.assertTrue(artist['name'] == u'Muse') self.assertTrue(artist['name'] == 'Muse')
if __name__ == '__main__': if __name__ == '__main__':

View File

@ -25,7 +25,7 @@ class TestSpotipy(unittest.TestCase):
def test_artist_urn(self): def test_artist_urn(self):
artist = self.spotify.artist(self.radiohead_urn) artist = self.spotify.artist(self.radiohead_urn)
self.assertTrue(artist['name'] == u'Radiohead') self.assertTrue(artist['name'] == 'Radiohead')
def test_artists(self): def test_artists(self):
results = self.spotify.artists([self.weezer_urn, self.radiohead_urn]) results = self.spotify.artists([self.weezer_urn, self.radiohead_urn])
@ -34,7 +34,7 @@ class TestSpotipy(unittest.TestCase):
def test_album_urn(self): def test_album_urn(self):
album = self.spotify.album(self.pinkerton_urn) album = self.spotify.album(self.pinkerton_urn)
self.assertTrue(album['name'] == u'Pinkerton') self.assertTrue(album['name'] == 'Pinkerton')
def test_album_tracks(self): def test_album_tracks(self):
results = self.spotify.album_tracks(self.pinkerton_urn) results = self.spotify.album_tracks(self.pinkerton_urn)
@ -58,15 +58,15 @@ class TestSpotipy(unittest.TestCase):
def test_track_urn(self): def test_track_urn(self):
track = self.spotify.track(self.creep_urn) track = self.spotify.track(self.creep_urn)
self.assertTrue(track['name'] == u'Creep') self.assertTrue(track['name'] == 'Creep')
def test_track_id(self): def test_track_id(self):
track = self.spotify.track(self.creep_id) track = self.spotify.track(self.creep_id)
self.assertTrue(track['name'] == u'Creep') self.assertTrue(track['name'] == 'Creep')
def test_track_url(self): def test_track_url(self):
track = self.spotify.track(self.creep_url) track = self.spotify.track(self.creep_url)
self.assertTrue(track['name'] == u'Creep') self.assertTrue(track['name'] == 'Creep')
def test_tracks(self): def test_tracks(self):
results = self.spotify.tracks([self.creep_url, self.el_scorcho_urn]) results = self.spotify.tracks([self.creep_url, self.el_scorcho_urn])