ia_search: Search the Internet Archive

Description Usage Arguments Value References Examples

Description

Perform an advanced search of the Internet Archive, specifying which metadata fields to search. Note that all searches are in the form of "contains," i.e., the title contains the search term.

Usage

1
2
ia_search(terms, num_results = 5, page = 1, print_url = FALSE,
  print_total = TRUE)

Arguments

terms

A set of metadata fields and corresponding values to search. These should take the form of a named character vector.

num_results

The number of results to return per page.

page

When results are paged, which page of results to return.

print_url

Should the URL used for the query be printed as a message?

print_total

Should the total number of results for this query be printed as a message?

Value

A character vector of Internet Archive item IDs.

References

See the documentation on the Internet Archive's advanced search page.

Examples

1
2
3
4
5
query1 <- c("title" = "damnation of theron ware")
ia_search(query1)
query2 <- c("title" = "damnation of theron ware",
            "contributor" = "gutenberg")
ia_search(query2)

internetarchive documentation built on May 2, 2019, 3:01 a.m.