The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

vvtermtime

R-CMD-check CodeFactor

The goal of vvtermtime is to provide functionalities to interact with the Semestry Timetabling Software API. The Semestry Timetabling Software is used by universities and educational institutions in creating efficient and effective schedules for their academic activities.

vvtermtime allows you to leverage the capabilities of the Semestry Timetabling Software directly from your R workflow.

Getting Started:

Install the vvtermtime package from GitHub using the following command:

install.packages("devtools")
devtools::install_github("vusaverse/vvtermtime")

Load the vvtermtime package in your R script:

library(vvtermtime)

Obtain your Semestry API key and base URL from the Semestry Timetabling Software provider at your institution.

Create a Semestry object using the authenticate() function. Replace your_api_key with your actual API key and https://api.semestry.com with the appropriate base URL:

semestry <- authenticate(base_url = "https://api.semestry.com", api_key = "your_api_key")

Now you are able to use the methods in this package. For example to retrieve the bookings for your institution, pass the semestry object to the get_roombookings() function, as shown below:

Bookings <- get_roombookings(semestry)

Please refer to the package documentation for more detailed information on how to use the vvtermtime package and its functions.

For more information about Semestry and their timetabling software, please visit their website: https://semestry.com/solutions/termtime/

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.