R/list_my_videos.R

Defines functions list_my_videos

Documented in list_my_videos

#' List My videos
#'
#' @param ... additional arguments to pass to \code{\link{list_channel_videos}}
#'
#' @return \code{data.frame} with each list corresponding to a different
#' playlist
#' @export
#'
#' @examples \dontrun{
#'   list_my_videos()
#' }
#'
list_my_videos <- function(...) {
  x <- get_channel_stats(mine = TRUE)
  res <- list_channel_videos(channel_id = x$id, ...)
  return(res)
}

Try the tuber package in your browser

Any scripts or data that you put into this service are public.

tuber documentation built on July 8, 2020, 5:49 p.m.