get_packages {connectapi}R Documentation

All package dependencies on the server

Description

Get a data frame of package dependencies used by all content items on the server.

Usage

get_packages(src, name = NULL, page_size = 100000, limit = Inf)

Arguments

src

A Connect client 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:

See Also

Other packages functions: get_content_packages()

Examples

## Not run: 
client <- connect()
packages <- get_packages(client)

## End(Not run)


[Package connectapi version 0.7.0 Index]