-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
40 lines (28 loc) · 1.13 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
title: songkickr
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
<!-- badges: start -->
[![R-CMD-check](https://github.com/juyeongkim/songkickr/workflows/R-CMD-check/badge.svg)](https://github.com/juyeongkim/songkickr/actions)
[![Codecov test coverage](https://codecov.io/gh/juyeongkim/songkickr/branch/master/graph/badge.svg)](https://codecov.io/gh/juyeongkim/songkickr?branch=master)
[![Lifecycle: maturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/#maturing)
<!-- badges: end -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
An R wrapper around [the Songkick API](https://www.songkick.com/developer).
## Get API Key
* [Apply for an API key](https://www.songkick.com/api_key_requests/new)
* Read their full [terms of use](https://www.songkick.com/developer/api-terms-of-use)
* Copy and save the API key somewhere safe
## Installation
``` r
# install.packages("remotes")
remotes::install_github("juyeongkim/songkickr")
```