Organization

class Organization

Used to list and reference resources (e.g., datasets) within an organization.

Constructors

Construct a reference to an organization based on its (case-insensitive) username.

Examples

# Reference the Demo organization (https://redivis.com/Demo)
organization = redivis.organization("demo")

# List all datasets
datasets = organization.list_datasets()

# Create a reference to a specific dataset
dataset = organization.dataset("ghcn_daily_weather_data")

Methods

organization.dataset(dataset_name[, ...])

Construct a reference to a dataset in the organization.

List all datasets in the organization.

Last updated