Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dgrtwo/rparse
Parse API Client for R
https://github.com/dgrtwo/rparse
Last synced: about 1 month ago
JSON representation
Parse API Client for R
- Host: GitHub
- URL: https://github.com/dgrtwo/rparse
- Owner: dgrtwo
- License: other
- Created: 2015-04-05T22:54:04.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-07T17:55:35.000Z (over 9 years ago)
- Last Synced: 2024-10-30T20:08:28.336Z (3 months ago)
- Language: R
- Size: 228 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output:
md_document:
variant: markdown_github
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```Parse API Client for R
======================`rparse` provides API functions for the cloud backend service [parse.com](https://parse.com/), including:
* creating and updating objects (`parse_save`)
* deleting objects (`parse_delete`)
* signing up (`parse_signup`) and logging in (`parse_login`) a user### Installation and Setup
Install using [devtools](https://github.com/hadley/devtools):
```{r, eval = FALSE}
devtools::install_github("dgrtwo/rparse")
```Before use, add lines to your R profile setting up your Parse API key:
```{r eval = FALSE}
Sys.setenv(PARSE_APPLICATION_ID = "YOUR_APPLICATION_ID")
Sys.setenv(PARSE_API_KEY = "YOUR_REST_API_KEY")
```These can be found in your [Account/App keys](https://parse.com/account/keys) page on Parse.