..
add_a_saved_album.py
Deprecate util.prompt_for_user_token()
2020-06-14 18:01:14 +01:00
add_a_saved_track.py
Deprecate util.prompt_for_user_token()
2020-06-14 18:01:14 +01:00
add_tracks_to_playlist.py
Update Playlist Endpoints and Add Following Endpoints ( #531 )
2020-07-11 11:23:18 +01:00
app.py
Removed requirement for examples/app.py to specify port multiple times (only SPOTIPY_REDIRECT_URI needs to contain the port) ( #636 )
2021-01-30 22:10:30 +01:00
artist_albums.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
artist_discography.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
artist_recommendations.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
audio_analysis_for_track.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
audio_features_for_track.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
audio_features.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
change_playlist_details.py
Update Playlist Endpoints and Add Following Endpoints ( #531 )
2020-07-11 11:23:18 +01:00
client_credentials_flow.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
contains_a_saved_track.py
Fix examples for saved tracks ( #624 )
2020-12-13 02:55:42 +00:00
create_playlist.py
Deprecate util.prompt_for_user_token()
2020-06-14 18:01:14 +01:00
delete_a_saved_track.py
Fix examples for saved tracks ( #624 )
2020-12-13 02:55:42 +00:00
headless.py
Allow open_browser to be set on creation of auth_manager (SpotifyOAuth/SpotifyPKCE) ( #574 )
2020-09-12 12:14:08 +01:00
my_playlists.py
Added scope, 'playlist-read-private', to examples that access user playlists using the spotipy api: current_user_playlists() ( fixes #591 ) ( #595 )
2020-10-23 22:57:14 +01:00
my_top_artists.py
Deprecate util.prompt_for_user_token()
2020-06-14 18:01:14 +01:00
my_top_tracks.py
Made cache_path and username optional ( #567 )
2020-08-30 23:59:38 +01:00
player.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
playlist_all_non_local_tracks.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
playlist_tracks.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
read_a_playlist.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
remove_specific_tracks_from_playlist.py
Made cache_path and username optional ( #567 )
2020-08-30 23:59:38 +01:00
remove_tracks_from_playlist.py
Update Playlist Endpoints and Add Following Endpoints ( #531 )
2020-07-11 11:23:18 +01:00
replace_tracks_in_playlist.py
Made cache_path and username optional ( #567 )
2020-08-30 23:59:38 +01:00
search.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
show_album.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
show_artist_top_tracks.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
show_artist.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
show_featured_playlists.py
Deprecate util.prompt_for_user_token()
2020-06-14 18:01:14 +01:00
show_my_saved_tracks.py
Deprecate util.prompt_for_user_token()
2020-06-14 18:01:14 +01:00
show_new_releases.py
Deprecate util.prompt_for_user_token()
2020-06-14 18:01:14 +01:00
show_related.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
show_track_info.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
show_tracks.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
show_user.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
simple0.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
simple1.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
simple2.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
simple3.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
simple4.py
Lint
2020-02-22 11:15:19 +00:00
test.py
Deprecate util.prompt_for_user_token()
2020-06-14 18:01:14 +01:00
title_chain.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
tracks.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
user_playlists_contents.py
Added scope, 'playlist-read-private', to examples that access user playlists using the spotipy api: current_user_playlists() ( fixes #591 ) ( #595 )
2020-10-23 22:57:14 +01:00
user_playlists.py
Added scope, 'playlist-read-private', to examples that access user playlists using the spotipy api: current_user_playlists() ( fixes #591 ) ( #595 )
2020-10-23 22:57:14 +01:00
user_public_playlists.py
Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
2021-04-14 12:40:08 -05:00
user_saved_albums_delete.py
Deprecate util.prompt_for_user_token()
2020-06-14 18:01:14 +01:00