User.project

User.project(project_name) Project

Construct a new project instance that references a project owned by a user.

Parameters:

project_name : str The name of the project, unique for all projects owned by the user. The name is case-insensitive, and can optionally be escaped following general name escaping rules. E.g., "Example project: Climate analysis" -> "example_project_climate_analysis".

Returns:

Project

Examples

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

project.get()
print(project.properties) # Properties will be fully populated after calling .get()

Last updated