create_project()
Python package: neptune-scale
Creates a project in a given Neptune workspace.
Parameters
Returns
The name of the created project.
Examples
from neptune_scale.projects import create_project
create_project(
name="project-x",
workspace="team-alpha", # a workspace with this name must already exist
)
You can also pass the project path as a single argument, in the form
workspace-name/project-name
:create_project(name="team-alpha/project-x")
More options:
create_project(
name="sandbox",
workspace="team-alpha", # a workspace with this name must already exist
visibility="workspace",
description="Sandbox project for testing purposes."
fail_if_exists=True,
api_token="h0dHBzOi8aHR0cHM6...Y2MifQ==",
)