https://github.com/smithsonian/edanr
Query the Smithsonian's Enterprise Digital Asset Network (EDAN) from R. Digitization Program Office, OCIO
https://github.com/smithsonian/edanr
api collections museum-metadata r
Last synced: 6 months ago
JSON representation
Query the Smithsonian's Enterprise Digital Asset Network (EDAN) from R. Digitization Program Office, OCIO
- Host: GitHub
- URL: https://github.com/smithsonian/edanr
- Owner: Smithsonian
- License: apache-2.0
- Created: 2018-08-22T15:59:35.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-04T20:22:43.000Z (over 2 years ago)
- Last Synced: 2024-12-30T02:43:32.371Z (over 1 year ago)
- Topics: api, collections, museum-metadata, r
- Language: R
- Homepage:
- Size: 33.2 KB
- Stars: 2
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EDANr
A package to query Smithsonian's Enterprise Digital Asset Network (EDAN) API from R.
All queries require valid EDAN credentials (AppID and AppKey). Consult the [EDAN Docs](https://edandoc.si.edu/) for instructions on how to obtain a set of credentials.
To install from Github:
```R
#Install devtools, if needed
install.packages("devtools")
#Install package from Github, with vignettes
library(devtools)
install_github("Smithsonian/EDANr", build_vignettes = TRUE)
```
EDANr requires the packages httr, uuid, stringr, jsonlite, digest, and openssl. These should be installed automatically when using `install_github("Smithsonian/EDANr")`. To install these manually:
```R
install.packages(c("httr", "uuid", "stringr", "jsonlite", "digest", "openssl"))
```
Check the [wiki](https://github.com/Smithsonian/EDANr/wiki) for some examples.
Feel free to make request or suggestions by [opening an issue](https://github.com/Smithsonian/EDANr/issues).