Skip to content
This repository has been archived by the owner on Jun 3, 2022. It is now read-only.

Latest commit

 

History

History
32 lines (21 loc) · 834 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 834 Bytes

Build Status

Overview

opencastR is a R package that is designed to read information from the external API of an Opencast server.

Status

At the moment only the GET functions are implemented.

Installation

The easiest way to get opencastR is to install it using the devtools:

install.packages("devtools")
devtools::install_github("ebbertd/opencastR")

Usage

Every function requires the hostname, username and password to be set as environment variables. For example:

Sys.setenv(OPENCAST_HOST = "https://legacy.opencast.org")
Sys.setenv(OPENCAST_USERNAME = "admin")
Sys.setenv(OPENCAST_PASSWORD = "opencast")

oc_api()