Skip to contents

Get a table of courses

Usage

get_course_table(.session, term = NULL)

Arguments

.session

An active rvest session

term

(optional) The term to be used in this query. If undefined, this value will be inherited from the environmental variable defined at setup.

Value

A tibble showing the CRN, title, subject, catalog number, and enrollment for each course. The current rvest session is attached as an attribute, used for chaining functions together.

Examples

if (FALSE) {
  my_courses <- authorize() |>
    get_course_table()
}