ckan_package class helpers
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 thehttp_method
parameter to set a different HTTP verb
Examples
if (FALSE) { # \dontrun{
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)
} # }