get_book_summary: Get Book Summary from Goodreads

View source: R/get_book_summary.R

get_book_summaryR Documentation

Get Book Summary from Goodreads

Description

This function takes a file path containing Goodreads book IDs and retrieves the summary for each book.

Usage

get_book_summary(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 summary 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
book_summary <- get_book_summary(temp_file)
print(book_summary)
# Clean up: remove the temporary file
file.remove(temp_file)


Goodreader documentation built on Oct. 30, 2024, 9:11 a.m.