Retrieves all episodes for one or more shows passed as a tibble. The archive page does not include full duration information, as it is limited to hours and minutes. Use incomparable_parse_stats() for accurate episode durations.

incomparable_parse_archive(archive_url)

Arguments

archive_url

E.g. "https://www.theincomparable.com/theincomparable/archive/".

Value

A tibble, with following format:

#> dplyr::glimpse(incomparable_parse_archive(archive_url))
 Columns: 12
 $ number   <chr>
 $ title    <chr>
 $ date     <date>
 $ year     <dbl>
 $ month    <ord>
 $ weekday  <ord>
 $ host     <chr>
 $ guest    <chr>
 $ category <chr>
 $ topic    <chr>
 $ summary  <chr>
 $ network  <chr>

Examples

if (FALSE) { # \dontrun{
archive_url <- "https://www.theincomparable.com/gameshow/archive/"
incomparable_parse_archive(archive_url)
} # }