Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/vincentguyader/blinkr
- Owner: VincentGuyader
- Created: 2019-09-26T23:20:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-06T13:15:54.000Z (over 3 years ago)
- Last Synced: 2023-04-26T09:28:55.163Z (over 1 year ago)
- Language: R
- Size: 29.3 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
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)
```