Not (yet) fully implemented Client for the Spotify API (https://developer.spotify.com/).
I started following this excellent tutorial and then implemented some functions by my own. A specific thing I wanted was to be able to create and update a public playlist, whose contents were all the songs I have liked.
It was made using Jupyter Notebook via pipenv, so you may want to install them (or just grab the cliente_spotify.py
file).
If you are on Windows and want to test the only implemented function, get the GUI.exe
file and you're good to go.
Oh and that minimal GUI is in Spanish.
- If you don't have pipenv, install it using:
pip install pipenv
. - Clone this repo somewhere and navigate to the folder.
- Create the virtual environment with python 3.8 and install Jupyter:
pipenv install --python 3.8 jupyter
. - Run Jupyter:
pipenv run jupyter notebook
. You must be where you created the virtual env (root of cloned repository).