create_project
Create a new dbnl Project
dbnl.create_project(
*,
name: str,
description: Optional[str] = None,
) -> :
Parameters
An optional description for the dbnl Project, defaults to None
. Description is limited to 255 characters.
Returns
The newly created dbnl Project.
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")