This function takes a file path containing Goodreads book IDs and retrieves the format information for each book.
Examples
# \donttest{
# Create a temporary file with sample book IDs
temp_file <- tempfile(fileext = ".txt")
writeLines(c("1420", "2767052", "10210"), temp_file)
# Run the function
format_info <- get_format_info(temp_file)
print(format_info)
#> $`1420`
#> [1] "289 pages, Paperback"
#>
#> $`2767052`
#> [1] "374 pages, Hardcover"
#>
#> $`10210`
#> [1] "532 pages, Paperback"
#>
# Clean up: remove the temporary file
file.remove(temp_file)
#> [1] TRUE
# }