Dataset

class Dataset

Dataset on Redivis are the entity where data is stored. Datasets are made up of tables, non-tabular files, and various metadata. Datasets can be owned by a user or organization, and are version controlled.

Constructors

Examples

dataset = redivis.organization("Demo").dataset("US Fires")

# Will throw an error if the dataset doesn't exists
# Can first call dataset.exists() to check for existence
dataset.get()

print(dataset.properties)

Attributes

Methods

Last updated