create_project
Create a new dbnl Project
dbnl.create_project(
*,
name: str,
description: Optional[str] = None,
) -> Project:Parameters
Arguments
Description
Returns
Type
Description
Examples
import dbnl
dbnl.login()
proj_1 = dbnl.create_project(name="test_p1")
# DBNLConflictingProjectError: A DBNL Project with name test_p1 already exists.
proj_2 = dbnl.create_project(name="test_p1")Was this helpful?

