Downloads and processes the Maryland school directory.
Examples
if (FALSE) { # \dontrun{
# Get all charter schools
directory <- fetch_directory()
# Get only charter schools
charter <- fetch_directory("charter_schools")
# Filter by county
baltimore_schools <- directory |>
dplyr::filter(county == "Baltimore City")
} # }