Parses data frame search ACRIS for specified urls

acris_data_df(data, parse_document_urls = FALSE, resolve_parties = T,
  nest_data = FALSE, sleep_time = 0.01, return_message = TRUE)

Arguments

data

a tibble with a column containing ACRIS urls in `urlACRIS`

parse_document_urls

if TRUE parses document URLS

resolve_parties

if TRUE resolves parties

nest_data

if TRUE nests data

sleep_time

amount of time to sleep in between scrapes

return_message

if TRUE returns a message

Value

a tibble

Examples

# NOT RUN {
library(dplyr)
df_acris_urls <- tibble(urlACRIS = "https://a836-ACRIS.nyc.gov/bblsearch/bblsearch.asp?borough=1&block=1030&lot=15")
df_acris_urls %>%
acris_data_df(parse_document_urls = FALSE, resolve_parties = T)

# }