Playing with the Spotify API via the Spotipy layer
Go to file
David Todd bc52b1021e update to the new location of SpotifyException 2018-04-24 23:32:21 -05:00
.gitignore Initial experiments complete 2018-01-27 22:01:42 -06:00
README.md add port instructions to README 2018-04-24 16:35:44 -05:00
get_user_auth.py Initial experiments complete 2018-01-27 22:01:42 -06:00
requirements.txt Update README and add requirements.txt 2018-04-24 01:43:06 -05:00
save_all_playlist.py Add working full playlist export 2018-04-24 23:31:11 -05:00
save_now_playing.py update to the new location of SpotifyException 2018-04-24 23:32:21 -05:00
set_env.sh Initial experiments complete 2018-01-27 22:01:42 -06:00
show_all_playlist.py Initial experiments complete 2018-01-27 22:01:42 -06:00
top_tracks.py Get a user's top 20 tracks and save it to a json file 2018-04-24 20:47:14 -05:00

README.md

Spotify API Experiments

This is a collection of experimentations with the Spotipy python library. All of these scripts will request an auth token for a particular user (username arg) upon startup From my experimentation so far, this will remmeber that the app was previously authorized for whatever "authorization scope" was approved by the user at the oauth screen

save_now_playing.py - This script will poll for the user's now playing track every 10s and update a text file get_user_auth.py - "Hello World" from the docs, this shows how to authorize using env show_all_playlist.py - Unlike the name suggests, I did not see all my playlists. This could be an auth scope issue however

To get started:

  • Create an app on Spotify's Developer console - https://beta.developer.spotify.com
  • Clone this repository
  • Ensure that you have "python-pip", and "python-virtualenv" installed
  • Run virtualenv venv to create a new python environment
  • Edit "set_env.sh" to configure your API ID, Secret, and redirect using the information from your previously created app
  • Configure your environment by running set_env.sh
  • Run pip install -r requirements.txt to install the required dependencies
  • Optionally git clone https://github.com/alopexc0de/spotipy.git into venv/lib/python2.7/site-packages/ (replacing the pip-installed spotipy)
    • If using c0de's spotipy, include a port higher than 1024 inside SPOTIPY_REDIRECT_URI. For example: "http://localhost:8000/"
  • Run any of the scripts to use them

License: MIT

Copyright (c) 2014 Paul Lamere - https://github.com/plamere/spotipy Copyright (c) 2018 c0de <c0defox.es, gama.io>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.