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
Method | Description |
---|---|
| List all projects owned by a user. |
| Construct a new project instance that references a project owned by a user. |
Examples
Attributes
| A dict containing the API resource representation of the project.
This will be fully populated after calling Project.get(), and partially populated for projects created via User.list_projects. Otherwise will be |
| The fully qualified reference for the project, which can be used in SQL queries or the REST API. E.g., |
| The canonical reference for the project, without the username qualifier. E.g.,: |
| A reference to the User instance that constructed this project. |
Methods
Check whether the project exists. | |
Get the project, populating the | |
| List all tables in the project. |
| Create a query scoped to the project. |
| Create a reference to a specific table within the project. |
Last updated