Links
Comment on page

Project API

read_project

vessl.read_project(
project_name: str, **kwargs
)
Read project in the default organization. If you want to override the default organization, then pass organization_name as **kwargs.
Args
  • project_name (str) : Project name.
Example
vessl.read_project(
project_name="tutorials",
)

list_projects

vessl.list_projects(
**kwargs
)
List projects in the default organization. If you want to override the default organization, then pass organization_name as **kwargs.
Example
vessl.list_projects()

create_project

vessl.create_project(
project_name: str, description: str = None, **kwargs
)
Create project in the default organization. If you want to override the default organization, then pass organization_name as **kwargs.
Args
  • project_name (str) : Project name.
  • description (str) : Project description. Defaults to None.
Example
vessl.create_project(
project_name="tutorials",
description="VESSL tutorial project",
)