Cache episode data

cache_podcast_data(x, dir = "data_cache", filename = NULL, csv = TRUE)

Arguments

x

Object to cache.

dir

["data_cache"] Directory to save data to.

filename

Optional filename sans extension, if not specified the name of x is used.

csv

If TRUE (default), also saves a CSV file with the same base name.

Value

Nothing

Examples

if (FALSE) { # \dontrun{
atp_new <- atp_get_episodes(page_limit = 1)
cache_podcast_data(atp_new, csv = FALSE)
} # }