- Notifications
You must be signed in to change notification settings - Fork4
interface to the Discogs API
License
NotificationsYou must be signed in to change notification settings
ewenme/discogger
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Tools for working with theDiscogs API in R.
Discogs Developers Site:https://www.discogs.com/developers
Development version
devtools::install_github('ewenme/discogger')
- Create a Discogs API v2application
- Generate a personal access token from yourAPI applicationpage
- Set your credentials in the System Environment variable
DISCOGS_API_TOKEN
by calling thediscogs_api_token()
functionand entering your Discogs application personal access token whenprompted.
library(discogger)library(tidyverse)
# get dance mania records listed on discogsdm_recs<- discogs_label_releases(label_id=314)dm_recs$content %>% group_by(artist) %>% summarise(n_releases= n_distinct(catno)) %>% arrange(desc(n_releases)) %>% top_n(10)
## # A tibble: 10 x 2## artist n_releases## <chr> <int>## 1 Various 21## 2 DJ Milton 15## 3 D.J. Funk* 13## 4 DJ Deeon 13## 5 Paul Johnson 11## 6 Robert Armani 11## 7 Jammin Gerald 10## 8 Parris Mitchell 9## 9 D.J. Slugo* 7## 10 DJ Funk 7
Please note that this project is released with aContributor Code ofConduct. By participating in this project you agreeto abide by its terms.