/lastfm-backup

Backup your listening history on a schedule. Library for Google Apps Script.

Primary LanguageJavaScriptMIT LicenseMIT

Lastfm backup

Backup your listening history on a schedule. Available JSON and CSV formats. Library for Google Apps Script

Install

  • Create lastfm endpoint
  • Create new project and add library with id: 1mXVb7yMnBn_lmImJG95TVmNQ1JEcpTcJmMWPHIMGgbdjuFPviXR8yTZW
  • Insert your username and apiKey
function createBackup() {
    lastfmbackup.init({ username: 'value', apiKey: 'value' });
    lastfmbackup.saveHistory({ json: true, csv: true });
    lastfmbackup.saveLoved({ json: true, csv: true });
}