Scrape AE7Q actions from *previous* day, not current day.

This commit is contained in:
mattbk 2024-11-28 10:22:15 -06:00
parent 113b3d30e8
commit 1b58d335f8

View File

@ -166,8 +166,8 @@ ae7q_table_state <- ae7q_table_state_raw %>%
Club)
###### AE7Q License Actions ######
ae7q_new_url <- paste0("https://www.ae7q.com/query/list/ProcessDate.php?DATE=", Sys.Date())
#ae7q_new_url <- paste0("https://www.ae7q.com/query/list/ProcessDate.php?DATE=2024-10-01")
ae7q_new_url <- paste0("https://www.ae7q.com/query/list/ProcessDate.php?DATE=", Sys.Date()-1)
#ae7q_new_url <- paste0("https://www.ae7q.com/query/list/ProcessDate.php?DATE=2024-11-01")
# Read the page
ae7q_new_raw <- read_html(ae7q_new_url)