Get a data frame of package dependencies used by all content items on the server.
Arguments
- src
A
Connectclient object.- name
Optional package name to filter by. Python package are normalized during matching; R package names must match exactly.
- page_size
Optional. Integer specifying page size for API paging.
- limit
Optional. Specify the maximum number of records after which to cease paging.
Value
A data frame with the following columns:
language: Language ecosystem the package belongs to (rorpython)language_version: Version of R or Python used by the contentname: Package nameversion: Package versionhash: Package description hash for R packagesbundle_id: Identifier for the bundle that depends on this packagecontent_id: Numeric identifier for the content that depends on this packagecontent_guid: The unique identifier of the content item that depends on this package
See also
Other packages functions:
get_content_packages()
Examples
if (FALSE) { # \dontrun{
client <- connect()
packages <- get_packages(client)
} # }