get_format_info {Goodreader} | R Documentation |
Get Format Information from Goodreads
Description
This function takes a file path containing Goodreads book IDs and retrieves the format information for each book.
Usage
get_format_info(file_path)
Arguments
file_path |
A character string specifying the path to the file containing Goodreads book IDs. |
Value
A named list where each element contains the format information for a book.
Examples
# 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)
# Clean up: remove the temporary file
file.remove(temp_file)
[Package Goodreader version 0.1.2 Index]