View source: R/get_author_info.R
get_author_info | R Documentation |
This function takes a file path containing Goodreads book IDs and retrieves the author information for each book.
get_author_info(file_path)
file_path |
A character string specifying the path to the file containing Goodreads book IDs. |
A named list where each element contains the author information for a book.
# Create a temporary file with sample book IDs
temp_file <- tempfile(fileext = ".txt")
writeLines(c("1420", "2767052", "10210"), temp_file)
# Run the function
author_info <- get_author_info(temp_file)
print(author_info)
# Clean up: remove the temporary file
file.remove(temp_file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.