Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 1.69 KB

README.md

File metadata and controls

59 lines (42 loc) · 1.69 KB

gcalendr

R build status Travis build status Lifecycle: experimental CRAN status Codecov test coverage

This package enables you to read events from google calendar.

Installation

The package is not yet on CRAN.

You can install the development version of gcalendr from github using:

# install.packages("devtools")
devtools::install_github("andrie/gcalendr")

Example

Use this example to authenticate, list available calendars and view events:

library(gcalendr)

## Set up google oauth permissions
## This will prompt you to specify an account
calendar_auth()
## To specify a specific account, provide your account id, typically an email address
calendar_auth("[email protected]")

## Retrieve tibble of available calenders
calendar_ids <- calendar_list()
calendar_ids

## Retrieve tibble of events from a specific calendar

my_cal_id <- "[email protected]"
events <- calendar_events(my_cal_id, days_in_past = 90, days_in_future = 90)
events