Learn R Programming

myepisodes

These are for functions accessing the MyEpisodes RSS feeds to extract myepisodes info in R.

Currently useful for extracting show info for a given feed, for example:

my_username <- "my_username"
my_password <- "1234567890abcdef123456789abcdef1"

shows <- shows_from_myepisodes(my_username, my_password, "mylist")
summary_of_shows(shows)

Can also update shows to mark as watched or acquired, calls to appropriate page in browser, so must be logged in:

example_show <- shows[[1]]
mark_episode_as_acquired(example_show)
mark_episode_as_watched(example_show)

Copy Link

Version

Install

install.packages('myepisodes')

Monthly Downloads

24

Version

1.1.1

License

GPL (>= 2)

Maintainer

Matt Malin

Last Published

July 3rd, 2012

Functions in myepisodes (1.1.1)

myepisodes

myepisodes functions
xml_shows_from_myepisodes_feed

Get shows from given MyEpisode feeds (retaining individual XML structure)
myepisodes_feed_url

get the MyEpisodes RSS feed url for a desired feed
mark_episode_as_acquired

Marks on MyEpisodes if an episode has been acquired (through browser)
shows_from_myepisodes_feed

Create list of information for individual shows from MyEpisodes feed
mark_episode_as_watched

Marks on MyEpisodes if an episode has been watched (through browser)
ep_number

Shows episode season/number in format SxNN
shows_from_myepisodes

Get info from shows given desired MyEpisodes feed information
show_info_from_xml

Get tv episode information from XML
summary_of_shows

Display summary of all the tv episodes in a list
update_episode

Marks on MyEpisodes if an episode has been watched/acquired (through browser)