Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vincentguyader/blinkr

tools to use the amazon blink home security system API
https://github.com/vincentguyader/blinkr

Last synced: about 2 months ago
JSON representation

tools to use the amazon blink home security system API

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# blinkr

[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)

The goal of blinkr is to download all video from the amazon blink home security system.

## Installation

You can install the released version of blinkr from github with:

``` r
remotes::install_github("vincentguyader/blinkr")
```

## Example

```{r example,eval=FALSE}
library(blinkr)
info <- get_info(email = "[email protected]",password = "password")
set_blink_api_token(token = info$token)
region <- info$region
accountid <-info$accountid

# info2 <- get_networks(token=token)

camera <- get_cameras(region = region)
get_thumbnails(camera = camera)
get_videos(accountid = accountid,region = region)
```