brickset_get_sets: Function to return many sets' data using brickset.com search...

Description Usage Arguments Examples

View source: R/scrape_brickset.R

Description

Function to return many sets' data using brickset.com search API

Usage

1
2
3
brickset_get_sets(auth_args = list(key = brickset_key(), username =
  brickset_username(), password = brickset_password(), userHash =
  brickset_hash(), authtime = brickset_authtime()), ...)

Arguments

auth_args

list containing key, username, password, userHash (if known), and authtime (if known). If list is full of NULL values (default), they will be substituted from the environment. Environment variables should be named .brickset_key, .brickset_username, .brickset_password, .brickset_authtime, and .brickset_hash, though the last two should generally not be user-specified. Auth variables are only necessary if variables are not cached in the global environment; if the global variables exist, this argument can be ignored entirely.

...

Variables as defined in https://brickset.com/api/v2.asmx?op=getSets Any variables not provided will be substituted with default values from the documentation with the exception of pageSize, which has been increased.

Examples

1
2
3
4
5
6
7
## Not run: 
brickset_get_sets(theme = "Architecture", pageSize = "10")

## End(Not run)
if (exists(".brickset_key") & exists(".brickset_hash")) {
  brickset_get_sets(theme = "Architecture", pageSize = "10")
}

srvanderplas/LegoR documentation built on Nov. 5, 2019, 9:17 a.m.