Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/briandconnelly/pushoverr
Send push notifications in R using Pushover
https://github.com/briandconnelly/pushoverr
notifications push-notifications pushover r
Last synced: about 1 month ago
JSON representation
Send push notifications in R using Pushover
- Host: GitHub
- URL: https://github.com/briandconnelly/pushoverr
- Owner: briandconnelly
- License: other
- Created: 2014-03-28T21:08:15.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2021-11-16T21:44:52.000Z (about 3 years ago)
- Last Synced: 2024-08-06T03:05:02.981Z (5 months ago)
- Topics: notifications, push-notifications, pushover, r
- Language: R
- Homepage: https://briandconnelly.github.io/pushoverr/
- Size: 2.09 MB
- Stars: 69
- Watchers: 6
- Forks: 6
- Open Issues: 9
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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%"
)
```# pushoverr
[![Codecov test coverage](https://codecov.io/gh/briandconnelly/pushoverr/branch/master/graph/badge.svg)](https://app.codecov.io/gh/briandconnelly/pushoverr?branch=master)
[![R-CMD-check](https://github.com/briandconnelly/pushoverr/workflows/R-CMD-check/badge.svg)](https://github.com/briandconnelly/pushoverr/actions)
[![CRAN status](https://www.r-pkg.org/badges/version/pushoverr)](https://CRAN.R-project.org/package=pushoverr)pushoverr allows you to send push notifications from R to mobile devices, web browsers, or even your watch using [Pushover](https://pushover.net/).
These notifications can display job status, results, scraped web data, or any other text or numeric data.
Got some R code that takes a while to complete?
Enough time to take a little walk or go get a coffee, but maybe not long enough to go home for the day?
Now you'll be able to easily let yourself or your group know when it's done.## Installation
Installing pushoverr is as easy as running:
```{r eval=FALSE}
install.packages("pushoverr")
```Alternately, you can install the development version of pushoverr from [GitHub](https://github.com/) with:
```{r eval=FALSE}
# install.packages("devtools")
devtools::install_github("briandconnelly/pushoverr")
```That's it!
See the [Getting Started](https://briandconnelly.github.io/pushoverr/articles/getting_started.html) vignette to start sending messages.## Features Not Supported
pushoverr currently does not support [subscriptions](https://pushover.net/api/subscriptions/), [licensing](https://pushover.net/api/licensing/) (I don't use Pushover in this context, so I can't test these features), or the [open client API](https://pushover.net/api/client/).
If you'd like to see these features supported, please submit an [issue](https://github.com/briandconnelly/pushoverr/issues) or a pull request.## Related Links
* [Pushover](https://pushover.net/)
* [Support](https://support.pushover.net/)
* [API](https://pushover.net/api/)
* [Terms of Service](https://pushover.net/terms/)
* [R Phone Home: Notifications with pushoverr](http://bconnelly.net/2016/11/R-phone-home/), blog post about using pushoverr
* [NotifyR](https://cran.r-project.org/package=notifyR), an alternate Pushover tool for R (no longer maintained?)
* [RPushbullet](https://eddelbuettel.github.io/rpushbullet/), an R interface for [Pushbullet](https://www.pushbullet.com/), a similar push notification service.## Code of Conduct
Please note that the pushoverr project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html).
By contributing to this project, you agree to abide by its terms.## Disclaimer
This package and its author are not affiliated with Pushover, LLC.