Skip to contents

ckan_package class helpers

Usage

as.ckan_package(x, ...)

is.ckan_package(x)

Arguments

x

Variety of things, character, list, or ckan_package class object

...

Further args passed on to package_show() if character given. In particular, if GET is not supported you can try the http_method parameter to set a different HTTP verb

Examples

if (FALSE) {
ckanr_setup(url = "https://demo.ckan.org/",
  key = getOption("ckan_demo_key"))

(pkgs <- package_search())
pkgs$results
pkgs$results[[3]]

# create item class from only an item ID
as.ckan_package(pkgs$results[[3]]$id)

# gives back itself
(x <- as.ckan_package(pkgs$results[[3]]$id))
as.ckan_package(x)
}