Lastipy is a Python library combining the APIs of Spotify and Last.fm, with scripts for creating customized recommendation playlists, automatically saving new releases, etc.


Install
pip install lastipy==1.1.43

Documentation

Lastipy

Lastipy is a Python library combining the APIs of Spotify and Last.fm, with scripts for creating customized recommendation playlists, automatically saving new releases, etc.

Prerequisites

You will need API keys for Last.fm: https://www.last.fm/api/ and for Spotify: https://developer.spotify.com/documentation/web-api/.

Installation

Clone the project, navigate to the project directory then use pip to install (will automatically pick up setup.py):
pip install .

Usage

The first time any of the scripts are run, the Spotify user will need to give authorization to the application in order to be able to read/modify their playlists/library. Once prompted, open the given URL in a browser, log into Spotify, then copy the URL to which you are redirected and paste it into the console. This will only need to be done the first time, since spotipy will cache the authorization.

Create a recommendations playlist

To create a playlist of recommendations generated from the user's "top tracks" in Last.fm, run:
recommendations_playlist user-configuration-file api-keys-file 

See scripts/example.recommendations.config for an example user configuration file and scripts/example.keys for an example API keys file.

Save new releases from followed artists to library

To save new tracks released by the user's followed artists (as of the current date) to their library ("Liked Songs"), run:
save_new_tracks user-configuration-file api-keys-file

See scripts/example.new.releases.config for an example user configuration file and scripts/example.keys for an an example API keys file.

Organize library into playlists

To organize a user's library into playlists based on play counts, run:
organize_favorites user-configuration-file api-keys-file

See scripts/example.organize.favorites.config for an example user configuration file and scripts/example.keys for an an example API keys file.