This function sends a GET request to the courses endpoint of the Semestry API and retrieves the course data.

get_courses(semestry, timeout = 30)

Arguments

semestry

An authenticated Semestry object.

timeout

The timeout duration for the GET request (default: 30 seconds).

Value

The retrieved course data from the API.

Examples

if (FALSE) {
  semestry <- authenticate_semestry()
  get_courses(semestry)
}