R/incomparable.R
incomparable_get_episodes.RdThis combines incomparable_parse_stats() and incomparable_parse_archive()
to retrieve full episode information including host/guest, durations
including seconds, podcast subcategories and topics.
Use sparingly to limit unnecessarily hammering the poor webserver!
incomparable_get_episodes(incomparable_shows, cache = TRUE)Dataset of shows with title and URLs as returned by
incomparable_get_shows().
(logical(1)) Set to FALSE to disable caching.
A tibble with one row per episode.
if (FALSE) { # \dontrun{
incomparable_shows <- incomparable_get_shows()
incomparable <- incomparable_get_episodes(incomparable_shows)
} # }