Quickstart

Verta provides robust and flexible user and access management capabilities.

  • Create an organization in the web app, bringing together users and associated permissions in a simple dashboard:

  • Creating projects, datasets, registered models and other entities in an organization allows you to easily share your work with a common group of users. By default entities, will inherit the baseline permission settings configured at the Organization level:

from verta import Client

client = Client()
client.create_project(
    "Example Project",
    workspace="example-org",
)
  • Entities in both personal and organization workspaces can also be shared directly with individuals by adding them as collaborators:

  • The users will then be able to access these entities through the web app and client:

proj = client.get_project(
    "Example Project",
    workspace="example-org",
)

Last updated