Downloads and processes the North Carolina school directory.
Examples
if (FALSE) { # \dontrun{
# Get all private schools
directory <- fetch_directory()
# Get only private schools
private <- fetch_directory("private_schools")
# Filter by county
wake_schools <- directory |>
dplyr::filter(county == "Wake")
} # }