README.md

rpocket

The goal of rpocket is to make retriving data from Pocket's Retrieve API easier by helping users quickly get the information into useable dataframes.

Users need their consumer key and access tokens from pocket to get their data. More information on getting those keys can be found here.

Installation

You can install rpocket from github with:

# install.packages("devtools")
devtools::install_github("paylakatel/rpocket")

Example

This is a basic example which shows you how to solve a common problem:

# get all pocket data
pocket_data <- get_data(consumer_key, access_token)

# get articles as a dataframe
articles_df <- get_articles(pocket_data)

# get authors as a dataframe
authors_df <- get_authors(pocket_data)


paylakatel/rpocket documentation built on May 24, 2019, 2:47 p.m.