Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mpadge/stellar
Search your github stars in R
https://github.com/mpadge/stellar
github github-api github-stars r r-package rstats
Last synced: 3 months ago
JSON representation
Search your github stars in R
- Host: GitHub
- URL: https://github.com/mpadge/stellar
- Owner: mpadge
- License: mit
- Created: 2018-04-19T20:41:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-26T12:37:56.000Z (over 4 years ago)
- Last Synced: 2024-08-06T03:04:55.782Z (5 months ago)
- Topics: github, github-api, github-stars, r, r-package, rstats
- Language: R
- Homepage:
- Size: 35.2 KB
- Stars: 26
- Watchers: 4
- Forks: 4
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - mpadge/stellar - Search your github stars in R (R)
README
[![Build Status](https://travis-ci.org/ropenscilabs/stellar.svg)](https://travis-ci.org/ropenscilabs/stellar) [![Project Status: Concept.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active) [![Coverage status](https://codecov.io/gh/ropenscilabs/stellar/branch/master/graph/badge.svg)](https://codecov.io/github/ropenscilabs/stellar?branch=master)
# stellar
Search your github stars in R
![](https://user-images.githubusercontent.com/6697851/39176684-b219d7b4-47ad-11e8-9aec-b30e284631e5.png)
## Installation
`stellar` can be installed directly from GitHub via any of the following methods
```r
# install.packages("devtools")
devtools::install_packages("ropenscilabs/stellar")
```or
```r
# install.packages("remotes")
remotes::install_packages("ropenscilabs/stellar")
```## How?
The only thing you need is a Personal Access Token from github. If you don't
know how:
1. Go to your personal settings (under your profile pic, top right)
2. On the left, under the main "Personal Settings" box, click "Developer
Settings" -> "Personal Access Tokens" and generate a new one. You'll need to
check the box for accessing repository data via the github API v4.
3. Save this as an **R** environmental variable called `GITHUB_GRAPHQL_TOKEN`
with `Sys.setenv("GITHUB_GRAPHQL_TOKEN" = )`. This can either be
done within a single session, or automatically for all sessions by pasting
this command within your `~/.Rprofile` file. (Simply create this file if it
doesn't already exist.)
### Code of Conduct
Please note that this project is released with a [Contributor Code of
Conduct](CONDUCT.md). By participating in this project you agree to abide by
its terms.