Dataset
class Dataset
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)dataset = redivis.user("my_username").dataset("My dataset")
dataset.create(public_access_level="overview")
print(dataset.properties)dataset = redivis.user("my_username").dataset("My dataset")
dataset = dataset.create_next_version()
# We can upload new data to existing tables once we have a "next" version
with open("data.csv", "rb") as file:
dataset.table("My table").upload("data.csv").upload_file(file)
dataset.release()
Attributes
Methods
Was this helpful?

