update_scrobbles {scrobbler}R Documentation

update_scrobbles

Description

Companion function to 'download_scrobbles'. Only downloads the scrobbles that have been stored since you ran 'download_scrobbles'.

Usage

update_scrobbles(
  data,
  timestamp_column,
  username = get_lastfm_credentials("username"),
  api_key = get_lastfm_credentials("key")
)

Arguments

data

A dataframe outputted by 'download_scrobbles'

timestamp_column

The 'date_unix' column in your dataframe

username

Last.fm API username

api_key

Last.fm API key

Value

A dataframe

Examples

## Not run: 
mydat <- download_scrobbles(username = "your_username", api_key = "your_api_key")
update_dat <- update_scrobbles(mydat,
    "date_unix",
    username = "your_username",
    api_key = "your_api_key")

## End(Not run)

[Package scrobbler version 1.0.3 Index]