Project

class Project

Projects on Redivis are where analytical workflows are built and executed. All projects are owned by a user, and are made up of transforms, notebooks, and their output tables.

Constructors

Examples

project = redivis.user("imathews").project("example_project_climate_analysis")
tables = project.list_tables()

for table in tables:
    # Properties will be populated with the table.list resource representation
    print(table.properties) 
    
    table.get()
    # Properties will now be populated with the table.get resource representation
    print(table.properties) 

project.table("join_lat_lon_output").exists() # -> TRUE

Attributes

Methods

Last updated