knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)

pinboardr

An R client application for the Pinboard API. Work in progress.

Usage

So far the posts and tags endpoints described in the pinboard documentation have been implemented. See ?posts or ?tags for documentation of the individual functions.

library(pinboardr)

# see dates and counts of bookmarks with the "rstats" tag.
rstats_bookmarks <- posts$dates(tags = "rstats")
head(rstats_bookmarks)

# available endpoints
ls(posts)
ls(tags)


tarakc02/pinboardr documentation built on May 12, 2019, 2:03 p.m.